Replacing variable interpolation in "All value" value

This commit is contained in:
Francisco Guimarães 2018-08-17 11:04:32 -03:00
parent bcd876f88e
commit d58986872c

View File

@ -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);
}
}