Browse Source

TypeError: Cannot read property 'isUp' of undefined #398 (#416)

master
Alexander Velikiy 4 years ago committed by GitHub
parent
commit
6298d3d7cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      src/panel/graph_panel/graph_ctrl.ts

10
src/panel/graph_panel/graph_ctrl.ts

@ -338,12 +338,22 @@ class GraphCtrl extends MetricsPanelCtrl {
this._analyticUnitsToShow
);
if(this.analyticService === undefined) {
appEvents.emit(
'alert-error',
[
'Select Hastic datasource',
'Panel config -> Visualization'
]
);
} else {
if(this.analyticService.isUp) {
await this.analyticsController.init();
this._updatePanelInfo();
this.analyticsController.updateServerInfo();
}
}
this._graphRenderer = new GraphRenderer(
this.$graphElem, this.timeSrv, this.contextSrv, this.$scope, this.analyticsController

Loading…
Cancel
Save