mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Enclose string in quotes
This commit is contained in:
parent
a608b80970
commit
c25fd72cbf
@ -81,7 +81,7 @@ angular.module('kibana.derivequeries', [])
|
|||||||
$scope.panel.loading = false;
|
$scope.panel.loading = false;
|
||||||
var data = [];
|
var data = [];
|
||||||
_.each(results.facets.query.terms, function(v) {
|
_.each(results.facets.query.terms, function(v) {
|
||||||
data.push($scope.panel.field+":"+v.term)
|
data.push($scope.panel.field+':"'+v.term+'"')
|
||||||
});
|
});
|
||||||
console.log(data)
|
console.log(data)
|
||||||
$scope.send_query(data)
|
$scope.send_query(data)
|
||||||
|
Loading…
Reference in New Issue
Block a user