Commit cc3b9287 by utkarshcmu

Opentsdb queries broken if no alias is uses with tags/filters

parent 0f2fa33d
......@@ -332,7 +332,8 @@ function (angular, _, dateMath) {
var tagData = [];
if (!_.isEmpty(md.tags)) {
_.each(_.pairs(md.tags), function(tag) {
_.each(_.toPairs(md.tags), function(tag) {
console.log(tag);
if (_.has(groupByTags, tag[0])) {
tagData.push(tag[0] + "=" + tag[1]);
}
......
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