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

Merge pull request #4161 from godfreyhe/fix_bug_getAggregators

fix bug: can't get the aggregators from opentsdb server
Torkel Ödegaard 9 лет назад
Родитель
Сommit
b56a2c14bb
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      public/app/plugins/datasource/opentsdb/query_ctrl.ts

+ 1 - 1
public/app/plugins/datasource/opentsdb/query_ctrl.ts

@@ -38,7 +38,7 @@ export class OpenTsQueryCtrl extends QueryCtrl {
       this.target.downsampleFillPolicy = 'none';
       this.target.downsampleFillPolicy = 'none';
     }
     }
 
 
-    this.datasource.getAggregators().then(function(aggs) {
+    this.datasource.getAggregators().then((aggs) => {
       this.aggregators = aggs;
       this.aggregators = aggs;
     });
     });