Browse Source

Merge pull request #234 from rashidkpc/master

Another fix for #228
Rashid Khan 12 years ago
parent
commit
af6fddaed4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panels/table/module.js

+ 1 - 1
panels/table/module.js

@@ -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);
     }