Commit aa6a6f6d by Rashid Khan

Merge pull request #235 from rashidkpc/master

Yet another fix for #228
parents af6fddae 7c9f14ad
......@@ -110,7 +110,7 @@ angular.module('kibana.table', [])
var query;
// This needs to be abstracted somewhere
if(_.isArray(value)) {
query = field+":(" + _.map(value,function(v){return angular.toJson(v)}).join(",") + ")";
query = field+":(" + _.map(value,function(v){return angular.toJson(v)}).join(" AND ") + ")";
} else {
query = field+":"+angular.toJson(value);
}
......
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