myoperator-ui 0.0.177 → 0.0.178
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
|
@@ -2315,7 +2315,7 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
|
|
|
2315
2315
|
key={option.value}
|
|
2316
2316
|
value={option.value}
|
|
2317
2317
|
disabled={option.disabled}
|
|
2318
|
-
|
|
2318
|
+
onSelect={() => handleItemSelect(option)}
|
|
2319
2319
|
>
|
|
2320
2320
|
{option.label}
|
|
2321
2321
|
</SelectItem>
|
|
@@ -2332,7 +2332,7 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
|
|
|
2332
2332
|
key={option.value}
|
|
2333
2333
|
value={option.value}
|
|
2334
2334
|
disabled={option.disabled}
|
|
2335
|
-
|
|
2335
|
+
onSelect={() => handleItemSelect(option)}
|
|
2336
2336
|
>
|
|
2337
2337
|
{option.label}
|
|
2338
2338
|
</SelectItem>
|