瀏覽代碼

Graphite: query letter for the whole alfabet, Fixes #1294

Torkel Ödegaard 11 年之前
父節點
當前提交
fc88429282
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/app/features/graphite/queryCtrl.js

+ 1 - 1
src/app/features/graphite/queryCtrl.js

@@ -9,7 +9,7 @@ function (angular, _, config, gfunc, Parser) {
   'use strict';
 
   var module = angular.module('grafana.controllers');
-  var targetLetters = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O'];
+  var targetLetters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
 
   module.controller('GraphiteQueryCtrl', function($scope, $sce, templateSrv) {