mirror of
https://github.com/grafana/grafana.git
synced 2026-07-30 08:18:10 -05:00
Opentsdb queries broken if no alias is uses with tags/filters
This commit is contained in:
@@ -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]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user