Explorar o código

influxdb: fixed template variable interpolation of multi valued variables when using raw query editor mode, fixes #8165

Torkel Ödegaard %!s(int64=8) %!d(string=hai) anos
pai
achega
d2a22e7b23
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      public/app/plugins/datasource/influxdb/influx_query.ts

+ 1 - 1
public/app/plugins/datasource/influxdb/influx_query.ts

@@ -194,7 +194,7 @@ export default class InfluxQuery {
     }
 
     var escapedValues = _.map(value, kbn.regexEscape);
-    return escapedValues.join('|');
+    return '(' + escapedValues.join('|') + ')';
   }
 
   render(interpolate?) {