Display tag values whenever a tag is part of the query (opentsdb datasource)

This commit is contained in:
Christophe Furmaniak
2014-06-25 23:56:25 +02:00
parent c925014bb5
commit dd2b43dc73

View File

@@ -33,9 +33,7 @@ function (angular, _, kbn) {
var groupByTags = {};
_.each(queries, function(query) {
_.each(query.tags, function(val, key) {
if (val === "*") {
groupByTags[key] = true;
}
groupByTags[key] = true;
});
});