Skip to content

Commit

Permalink
Related to PR #6896 (#6897)
Browse files Browse the repository at this point in the history
* fix: Internal value of hidden input is not updated

* fix: Serialization of value object
  • Loading branch information
ivanpajon authored Jul 16, 2024
1 parent ee314da commit 2c5cbb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/multiselect/MultiSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ export const MultiSelect = React.memo(
'aria-expanded': overlayVisibleState,
disabled: props.disabled,
tabIndex: !props.disabled ? props.tabIndex : -1,
value: props.value,
value: JSON.stringify(props.value),
...ariaProps
},
ptm('input')
Expand Down

0 comments on commit 2c5cbb4

Please sign in to comment.