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

This commit is contained in:
bmundt 2016-07-25 04:36:38 -04:00 committed by Torkel Ödegaard
parent 6d28365e84
commit f6b1d5a84a

View File

@ -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(['=', '!=', '<>', '<', '>']));
}
}