File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
packages/x-date-pickers/src/internals/hooks/useField Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,9 @@ export function useFieldSectionContentProps(
190190 role : 'spinbutton' ,
191191 'data-range-position' : ( section as FieldRangeSection ) . dateName || undefined ,
192192 spellCheck : isEditable ? false : undefined ,
193- autoCapitalize : isEditable ? 'off' : undefined ,
193+ // Firefox hydrates this as `'none`' instead of `'off'`. No problems in chromium with both values.
194+ // For reference https://github.com/mui/mui-x/issues/19012
195+ autoCapitalize : isEditable ? 'none' : undefined ,
194196 autoCorrect : isEditable ? 'off' : undefined ,
195197 children : section . value || section . placeholder ,
196198 inputMode : section . contentType === 'letter' ? 'text' : 'numeric' ,
You can’t perform that action at this time.
0 commit comments