Disable query should trigger refresh

This commit is contained in:
Torkel Ödegaard 2019-01-23 19:34:56 +01:00
parent d88b7608a5
commit b1ef3c43f9

View File

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