From 190bd73375a09b9b5efddb652ca79a3fcb86ec47 Mon Sep 17 00:00:00 2001 From: rozetko Date: Wed, 24 Jul 2019 18:04:46 +0300 Subject: [PATCH] Hotfix for #353 (#367) Change error message --- src/panel/graph_panel/graph_ctrl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panel/graph_panel/graph_ctrl.ts b/src/panel/graph_panel/graph_ctrl.ts index 7ebe975..099f8a8 100644 --- a/src/panel/graph_panel/graph_ctrl.ts +++ b/src/panel/graph_panel/graph_ctrl.ts @@ -763,7 +763,7 @@ class GraphCtrl extends MetricsPanelCtrl { private async _getDatasourceRequest() { if(this._datasourceRequest === undefined) { - throw new Error('Datasource is not set. If it`s Grafana test-datasource - it`s not supported'); + throw new Error('Datasource is not set. If it`s Grafana-test-datasource then it`s not supported'); } if(this._datasourceRequest.type === undefined) { const datasource = await this._getDatasourceByName(this.panel.datasource);