From fc8842928222867cfd1056a0ff80511ad30aff97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Sun, 4 Jan 2015 12:25:06 +0100 Subject: [PATCH] Graphite: query letter for the whole alfabet, Fixes #1294 --- src/app/features/graphite/queryCtrl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/features/graphite/queryCtrl.js b/src/app/features/graphite/queryCtrl.js index e270c555aa6..0654c474af5 100644 --- a/src/app/features/graphite/queryCtrl.js +++ b/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) {