瀏覽代碼

initialize empty variables array in constructor so that datasources can use the array in explore

Erik Sundell 7 年之前
父節點
當前提交
45fbbe8021
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      public/app/features/templating/template_srv.ts

+ 1 - 0
public/app/features/templating/template_srv.ts

@@ -17,6 +17,7 @@ export class TemplateSrv {
   constructor() {
     this.builtIns['__interval'] = { text: '1s', value: '1s' };
     this.builtIns['__interval_ms'] = { text: '100', value: '100' };
+    this.variables = [];
   }
 
   init(variables) {