From 2c5cbb43c3bfb307b64e9d7469535a118ac32e02 Mon Sep 17 00:00:00 2001 From: Ivan Date: Tue, 16 Jul 2024 23:49:02 +0200 Subject: [PATCH] Related to PR #6896 (#6897) * fix: Internal value of hidden input is not updated * fix: Serialization of value object --- components/lib/multiselect/MultiSelect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/multiselect/MultiSelect.js b/components/lib/multiselect/MultiSelect.js index 9970f05925..93baf114de 100644 --- a/components/lib/multiselect/MultiSelect.js +++ b/components/lib/multiselect/MultiSelect.js @@ -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')