From c41cdfc639171f989cda8e8dcc03a43104f630f8 Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Sun, 17 Jan 2016 21:28:42 +0300 Subject: [PATCH] Removed zabbixHelperSrv from queryCtrl --- plugins/datasource-zabbix/queryCtrl.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/datasource-zabbix/queryCtrl.js b/plugins/datasource-zabbix/queryCtrl.js index 4837d95..a81291b 100644 --- a/plugins/datasource-zabbix/queryCtrl.js +++ b/plugins/datasource-zabbix/queryCtrl.js @@ -1,7 +1,6 @@ define([ 'angular', 'lodash', - './helperFunctions', './utils' ], function (angular, _) { @@ -10,7 +9,7 @@ define([ var module = angular.module('grafana.controllers'); var targetLetters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; - module.controller('ZabbixAPIQueryCtrl', function ($scope, $sce, templateSrv, zabbixHelperSrv, Utils) { + module.controller('ZabbixAPIQueryCtrl', function ($scope, $sce, templateSrv, Utils) { var zabbixCache = $scope.datasource.zabbixCache;