Просмотр исходного кода

fix(influxdb): fixed editor bug introduced in recent commit

Torkel Ödegaard 10 лет назад
Родитель
Сommit
b61b7f0c3b
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      public/app/plugins/datasource/influxdb/queryCtrl.js

+ 1 - 1
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));
       });