myoperator-mcp 0.2.97 → 0.2.99
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3429,7 +3429,7 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
|
|
|
3429
3429
|
key={option.value}
|
|
3430
3430
|
value={option.value}
|
|
3431
3431
|
disabled={option.disabled}
|
|
3432
|
-
|
|
3432
|
+
onPointerUp={() => handleItemClick(option)}
|
|
3433
3433
|
>
|
|
3434
3434
|
{option.label}
|
|
3435
3435
|
</SelectItem>
|
|
@@ -3446,7 +3446,7 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
|
|
|
3446
3446
|
key={option.value}
|
|
3447
3447
|
value={option.value}
|
|
3448
3448
|
disabled={option.disabled}
|
|
3449
|
-
|
|
3449
|
+
onPointerUp={() => handleItemClick(option)}
|
|
3450
3450
|
>
|
|
3451
3451
|
{option.label}
|
|
3452
3452
|
</SelectItem>
|
package/package.json
CHANGED