From d58986872c52ee6349f70e33d0d0f5c4947152a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Guimar=C3=A3es?= Date: Fri, 17 Aug 2018 11:04:32 -0300 Subject: [PATCH] Replacing variable interpolation in "All value" value --- public/app/features/templating/template_srv.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/templating/template_srv.ts b/public/app/features/templating/template_srv.ts index fc79d12ff9e..5bbf5effa66 100644 --- a/public/app/features/templating/template_srv.ts +++ b/public/app/features/templating/template_srv.ts @@ -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); } }