Explorar el Código

Another fix for #228

Rashid Khan hace 12 años
padre
commit
1e3d382245
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);
     }