mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Another fix for #228
This commit is contained in:
parent
dce884f526
commit
1e3d382245
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user