We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e68a00 commit da386d9Copy full SHA for da386d9
packages/carbon-component-mapper/src/select/select.js
@@ -214,6 +214,7 @@ const ClearedSelectSearchable = ({
214
placeholder,
215
labelText,
216
onChange,
217
+ value,
218
...rest
219
}) => (
220
<ComboBox
@@ -222,7 +223,7 @@ const ClearedSelectSearchable = ({
222
223
id={rest.name}
224
invalid={Boolean(invalidText)}
225
invalidText={invalidText}
- initialSelectedItem={getComboInitialValue(rest.value, options)}
226
+ initialSelectedItem={getComboInitialValue(value, options)}
227
items={options}
228
placeholder={placeholder}
229
titleText={labelText}
0 commit comments