diff --git a/src/panel/graph_panel/graph_ctrl.ts b/src/panel/graph_panel/graph_ctrl.ts index 0329e15..6ad9072 100644 --- a/src/panel/graph_panel/graph_ctrl.ts +++ b/src/panel/graph_panel/graph_ctrl.ts @@ -272,6 +272,9 @@ class GraphCtrl extends MetricsPanelCtrl { await this.analyticsController.removeAnalyticUnit(analyticUnit.id, true); } if(analyticUnit.status === 'READY') { + if(this.range === undefined) { + this.updateTimeRange(); + } await this.analyticsController.fetchSegments(analyticUnit, +this.range.from, +this.range.to); } this.render(this.seriesList);