浏览代码

Replacing variable interpolation in "All value" value

Francisco Guimarães 7 年之前
父节点
当前提交
d58986872c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      public/app/features/templating/template_srv.ts

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

@@ -209,7 +209,7 @@ export class TemplateSrv {
         value = this.getAllValue(variable);
         // skip formatting of custom all values
         if (variable.allValue) {
-          return value;
+          return this.replace(value);
         }
       }