Browse Source

Panel doesn't work at relative path #135 (#136)

master
rozetko 5 years ago committed by GitHub
parent
commit
7c0f740331
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/module.ts

2
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;
}

Loading…
Cancel
Save