eai-frontend-components 2.0.94 → 2.0.95
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.
- package/dist/index.d.ts +10 -10
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9307,7 +9307,7 @@ const FormCombobox = ({ control, variant = 'outline', name, label, subLabel, hel
|
|
|
9307
9307
|
const handleSelect = (value, field) => {
|
|
9308
9308
|
const option = value ? getSelectedOption(value) : undefined;
|
|
9309
9309
|
if (canUnselect) {
|
|
9310
|
-
field.onChange(field.value === value ?
|
|
9310
|
+
field.onChange(field.value === value ? '' : value);
|
|
9311
9311
|
}
|
|
9312
9312
|
else {
|
|
9313
9313
|
field.onChange(value);
|