From b61b7f0c3bdab65d9d8abe813fe40aef4220c2a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Wed, 9 Sep 2015 11:05:34 +0200 Subject: [PATCH] fix(influxdb): fixed editor bug introduced in recent commit --- public/app/plugins/datasource/influxdb/queryCtrl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/influxdb/queryCtrl.js b/public/app/plugins/datasource/influxdb/queryCtrl.js index c5d49e92163..ca77071db99 100644 --- a/public/app/plugins/datasource/influxdb/queryCtrl.js +++ b/public/app/plugins/datasource/influxdb/queryCtrl.js @@ -45,7 +45,7 @@ function (angular, _, InfluxQueryBuilder) { $scope.tagSegments.push(uiSegmentSrv.newCondition(tag.condition)); } - $scope.tagSegments.push(uiSegmentSrv.newKey(tag.Key)); + $scope.tagSegments.push(uiSegmentSrv.newKey(tag.key)); $scope.tagSegments.push(uiSegmentSrv.newOperator(tag.operator)); $scope.tagSegments.push(uiSegmentSrv.newKeyValue(tag.value)); });