Commit 1e3d3822 by Rashid Khan

Another fix for #228

parent dce884f5
......@@ -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(",") + ")";
} 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