Skip to content

Commit f6b1d5a

Browse files
bmundttorkelo
authored andcommitted
Added '!=' option for where clause in the influx query builder (grafana#5646)
1 parent 6d28365 commit f6b1d5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/app/plugins/datasource/influxdb/query_ctrl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ export class InfluxQueryCtrl extends QueryCtrl {
212212
if (/^\/.*\/$/.test(nextValue)) {
213213
return this.$q.when(this.uiSegmentSrv.newOperators(['=~', '!~']));
214214
} else {
215-
return this.$q.when(this.uiSegmentSrv.newOperators(['=', '<>', '<', '>']));
215+
return this.$q.when(this.uiSegmentSrv.newOperators(['=', '!=', '<>', '<', '>']));
216216
}
217217
}
218218

0 commit comments

Comments
 (0)