Commit 8bda5aa2 by Torkel Ödegaard

Merge pull request #539 from looztra/opentsdb-fix-tag-display

Display tag values whenever a tag is part of the query (opentsdb)
parents c925014b dd2b43dc
......@@ -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;
});
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment