mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
InfluxDB: Fixed new group by dropdown now showing (#26031)
This commit is contained in:
@@ -90,6 +90,12 @@ export class InfluxQueryBuilder {
|
||||
if (tag.key === withKey) {
|
||||
return memo;
|
||||
}
|
||||
|
||||
// value operators not supported in these types of queries
|
||||
if (tag.operator === '>' || tag.operator === '<') {
|
||||
return memo;
|
||||
}
|
||||
|
||||
memo.push(renderTagCondition(tag, memo.length));
|
||||
return memo;
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user