From 5a241a8290dd733ed7351543344e4c3229002a16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Thu, 28 Apr 2016 10:29:36 +0200 Subject: [PATCH] fix(): minor query editor fix --- public/app/features/panel/query_editor_row.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/features/panel/query_editor_row.ts b/public/app/features/panel/query_editor_row.ts index 10782b2c420..84cc597e388 100644 --- a/public/app/features/panel/query_editor_row.ts +++ b/public/app/features/panel/query_editor_row.ts @@ -79,6 +79,7 @@ export class QueryRowCtrl { } removeQuery() { + delete this.panelCtrl.__collapsedQueryCache[this.target.refId]; this.panel.targets = _.without(this.panel.targets, this.target); this.panelCtrl.refresh(); }