Commit 675d43c7 by Torkel Ödegaard Committed by GitHub

PanelEditor: Fix queries tab now showing, wrong skipDataQuery logic (#16994)

parent 1d7bb2a7
......@@ -105,7 +105,7 @@ export class PanelEditor extends PureComponent<PanelEditorProps> {
];
// handle panels that do not have queries tab
if (!plugin.meta.skipDataQuery) {
if (plugin.meta.skipDataQuery) {
// remove queries tab
tabs.shift();
// switch tab
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment