Masaori Koshiba 10 lat temu
rodzic
commit
df9403809b

+ 0 - 3
public/app/plugins/datasource/kairosdb/queryCtrl.js

@@ -8,7 +8,6 @@ function (angular, _) {
   var module = angular.module('grafana.controllers');
   var metricList = [];
   var tagList = [];
-  var targetLetters = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O'];
 
   module.controller('KairosDBQueryCtrl', function($scope) {
 
@@ -21,8 +20,6 @@ function (angular, _) {
         $scope.target.downsampling = $scope.panel.downsampling;
         $scope.target.sampling = $scope.panel.sampling;
       }
-      $scope.targetLetters = targetLetters;
-      $scope.updateMetricList();
       $scope.target.errors = validateTarget($scope.target);
     };