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

Replacing variable interpolation in "All value" value
This commit is contained in:
Marcus Efraimsson
2018-08-24 15:40:55 +02:00
committed by GitHub
@@ -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);
}
}