From be712157e3a6ac0a62e05fa77d68876ca51c82cf Mon Sep 17 00:00:00 2001 From: Dominik Prokop Date: Mon, 27 Apr 2020 15:33:27 +0200 Subject: [PATCH] NewPanelEditor: fix wrong path to time regions template causing panel editor to bug (#23946) --- public/app/plugins/panel/graph/module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/panel/graph/module.ts b/public/app/plugins/panel/graph/module.ts index 892fa7b36f0..4197092b929 100644 --- a/public/app/plugins/panel/graph/module.ts +++ b/public/app/plugins/panel/graph/module.ts @@ -166,7 +166,7 @@ class GraphCtrl extends MetricsPanelCtrl { this.addEditorTab('Axes', axesEditorComponent); this.addEditorTab('Legend', 'public/app/plugins/panel/graph/tab_legend.html'); this.addEditorTab('Thresholds', 'public/app/plugins/panel/graph/tab_thresholds.html'); - this.addEditorTab('Time regions', 'public/app/plugins/panel/graph/time_regions.html'); + this.addEditorTab('Time regions', 'public/app/plugins/panel/graph/tab_time_regions.html'); this.addEditorTab('Data links', 'public/app/plugins/panel/graph/tab_drilldown_links.html'); this.subTabIndex = 0; this.hiddenSeriesTainted = false;