diff --git a/public/app/plugins/datasource/influxdb/query_ctrl.ts b/public/app/plugins/datasource/influxdb/query_ctrl.ts index 69895e53c25..4cc07e9a64b 100644 --- a/public/app/plugins/datasource/influxdb/query_ctrl.ts +++ b/public/app/plugins/datasource/influxdb/query_ctrl.ts @@ -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(['=', '!=', '<>', '<', '>'])); } }