Browse Source

Merge pull request #12967 from franciscocpg/custom-all-value-variable-interpolation

Replacing variable interpolation in "All value" value
Marcus Efraimsson 7 years ago
parent
commit
49f9276df0
1 changed files with 1 additions and 1 deletions
  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);
         value = this.getAllValue(variable);
         // skip formatting of custom all values
         // skip formatting of custom all values
         if (variable.allValue) {
         if (variable.allValue) {
-          return value;
+          return this.replace(value);
         }
         }
       }
       }