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
commit 49f9276df0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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