Commit d2a22e7b by Torkel Ödegaard

influxdb: fixed template variable interpolation of multi valued variables when…

influxdb: fixed template variable interpolation of multi valued variables when using raw query editor mode, fixes #8165
parent 19a04b7e
......@@ -194,7 +194,7 @@ export default class InfluxQuery {
}
var escapedValues = _.map(value, kbn.regexEscape);
return escapedValues.join('|');
return '(' + escapedValues.join('|') + ')';
}
render(interpolate?) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment