Explorar el Código

Disable query should trigger refresh

Torkel Ödegaard hace 7 años
padre
commit
b1ef3c43f9
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      public/app/features/dashboard/panel_editor/QueryEditorRow.tsx

+ 1 - 0
public/app/features/dashboard/panel_editor/QueryEditorRow.tsx

@@ -166,6 +166,7 @@ export class QueryEditorRow extends PureComponent<Props, State> {
 
   onDisableQuery = () => {
     this.props.query.hide = !this.props.query.hide;
+    this.onExecuteQuery();
     this.forceUpdate();
   };