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 96bbcdb commit 6442893Copy full SHA for 6442893
packages/mui-component-mapper/src/files/select.js
@@ -116,7 +116,7 @@ const InternalSelect = ({
116
options={options}
117
multiple={isMulti}
118
getOptionLabel={(option) => getOptionLabel(option, options)}
119
- value={typeof internalValue === 'undefined' ? '' : internalValue}
+ value={typeof internalValue === 'undefined' ? null : internalValue}
120
onChange={(_event, option) => onChange(createValue(option, isMulti))}
121
loading={isFetching}
122
/>
0 commit comments