mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
influxdb: fixed template variable interpolation of multi valued variables when using raw query editor mode, fixes #8165
This commit is contained in:
parent
19a04b7e4a
commit
d2a22e7b23
@ -194,7 +194,7 @@ export default class InfluxQuery {
|
||||
}
|
||||
|
||||
var escapedValues = _.map(value, kbn.regexEscape);
|
||||
return escapedValues.join('|');
|
||||
return '(' + escapedValues.join('|') + ')';
|
||||
}
|
||||
|
||||
render(interpolate?) {
|
||||
|
Loading…
Reference in New Issue
Block a user