From 7c0f740331740dfae13ce1fb5b7075af99c83c90 Mon Sep 17 00:00:00 2001 From: rozetko Date: Fri, 25 Jan 2019 20:12:59 +0300 Subject: [PATCH] Panel doesn't work at relative path #135 (#136) --- src/module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module.ts b/src/module.ts index d5d2c7c..89b9de1 100644 --- a/src/module.ts +++ b/src/module.ts @@ -494,7 +494,7 @@ class GraphCtrl extends MetricsPanelCtrl { get panelPath() { if (this._panelPath === undefined) { - this._panelPath = '/public/plugins/' + this.pluginId + '/'; + this._panelPath = 'public/plugins/' + this.pluginId + '/'; } return this._panelPath; }