Add In/NotIn constants

This commit is contained in:
Mel O'Hagan 2022-06-24 14:39:16 +01:00
parent e3196adc18
commit 652515ca69
1 changed files with 8 additions and 0 deletions

View File

@ -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