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

Merge branch 'fix_refresh_variable_from_url' of https://github.com/toni-moreno/grafana into toni-moreno-fix_refresh_variable_from_url

Torkel Ödegaard 10 лет назад
Родитель
Сommit
24324939e1
1 измененных файлов с 0 добавлено и 11 удалено
  1. 0 11
      public/app/features/templating/templateValuesSrv.js

+ 0 - 11
public/app/features/templating/templateValuesSrv.js

@@ -45,17 +45,6 @@ function (angular, _, kbn) {
     };
     };
 
 
     this.setVariableFromUrl = function(variable, urlValue) {
     this.setVariableFromUrl = function(variable, urlValue) {
-      if (variable.refresh) {
-        var self = this;
-        //refresh the list of options before setting the value
-        return this.updateOptions(variable).then(function() {
-          var option = _.findWhere(variable.options, { text: urlValue });
-          option = option || { text: urlValue, value: urlValue };
-
-          self.updateAutoInterval(variable);
-          return self.setVariableValue(variable, option);
-        });
-      }
       var option = _.findWhere(variable.options, { text: urlValue });
       var option = _.findWhere(variable.options, { text: urlValue });
       option = option || { text: urlValue, value: urlValue };
       option = option || { text: urlValue, value: urlValue };