mirror of
https://github.com/grafana/grafana.git
synced 2025-08-06 20:59:35 +08:00
join multivalue variables with ,
This commit is contained in:
@ -151,7 +151,7 @@ export default class PostgresQuery {
|
||||
}
|
||||
|
||||
var escapedValues = _.map(value, kbn.regexEscape);
|
||||
return '(' + escapedValues.join('|') + ')';
|
||||
return '(' + escapedValues.join(',') + ')';
|
||||
}
|
||||
|
||||
render(interpolate?) {
|
||||
|
Reference in New Issue
Block a user