Add In/NotIn constants
This commit is contained in:
parent
e3196adc18
commit
652515ca69
|
@ -42,6 +42,14 @@ export const OperatorOptions = {
|
||||||
value: "notEqual",
|
value: "notEqual",
|
||||||
label: "Does Not Contain",
|
label: "Does Not Contain",
|
||||||
},
|
},
|
||||||
|
In: {
|
||||||
|
value: "oneOf",
|
||||||
|
label: "Is in",
|
||||||
|
},
|
||||||
|
NotIn: {
|
||||||
|
value: "notOneOf",
|
||||||
|
label: "Is not in",
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
// Cookie names
|
// Cookie names
|
||||||
|
|
Loading…
Reference in New Issue