Quellcode durchsuchen

Replacing variable interpolation in "All value" value

Francisco Guimarães vor 7 Jahren
Ursprung
Commit
d58986872c
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      public/app/features/templating/template_srv.ts

+ 1 - 1
public/app/features/templating/template_srv.ts

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