Преглед на файлове

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

bmundt преди 9 години
родител
ревизия
f6b1d5a84a
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      public/app/plugins/datasource/influxdb/query_ctrl.ts

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