@evoke-platform/ui-components 1.0.0-dev.248 → 1.0.0-dev.249
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -132,7 +132,7 @@ const customSelector = (props) => {
|
|
132
132
|
placeholder = 'Select Operator';
|
133
133
|
if (inputType === 'array') {
|
134
134
|
opts = options
|
135
|
-
.filter((option) => ['null', 'notNull', 'in'
|
135
|
+
.filter((option) => ['null', 'notNull', 'in'].includes(option.name))
|
136
136
|
.map((option) => ({ name: option.name, label: option.label }));
|
137
137
|
val = val === '=' ? '' : options.find((option) => option.name === val).name;
|
138
138
|
}
|