join multivalue variables with ,

This commit is contained in:
Sven Klemm 2018-03-13 23:33:40 +01:00
parent e6501f0f0e
commit 6793fa5e54

View File

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