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.
2 parents 96bbcdb + 6442893 commit 2cf4b13Copy full SHA for 2cf4b13
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