Commit 49f9276d by Marcus Efraimsson Committed by GitHub

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

Replacing variable interpolation in "All value" value
parents 5bb0d266 d5898687
...@@ -209,7 +209,7 @@ export class TemplateSrv { ...@@ -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);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment