Commit f6b1d5a8 by bmundt Committed by Torkel Ödegaard

Added '!=' option for where clause in the influx query builder (#5646)

parent 6d28365e
......@@ -212,7 +212,7 @@ export class InfluxQueryCtrl extends QueryCtrl {
if (/^\/.*\/$/.test(nextValue)) {
return this.$q.when(this.uiSegmentSrv.newOperators(['=~', '!~']));
} else {
return this.$q.when(this.uiSegmentSrv.newOperators(['=', '<>', '<', '>']));
return this.$q.when(this.uiSegmentSrv.newOperators(['=', '!=', '<>', '<', '>']));
}
}
......
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