myoperator-mcp 0.2.95 → 0.2.97
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.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3307,11 +3307,11 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
|
|
|
3307
3307
|
// no-op.
|
|
3308
3308
|
const handleItemClick = React.useCallback(
|
|
3309
3309
|
(option: SelectOption) => {
|
|
3310
|
-
if (option.value === value
|
|
3311
|
-
|
|
3310
|
+
if (option.value === value) {
|
|
3311
|
+
handleValueChange(option.value);
|
|
3312
3312
|
}
|
|
3313
3313
|
},
|
|
3314
|
-
[value,
|
|
3314
|
+
[value, handleValueChange]
|
|
3315
3315
|
);
|
|
3316
3316
|
|
|
3317
3317
|
// Derive state from props
|
package/package.json
CHANGED