Skip to content

Commit

Permalink
[TextField] Fix floating label positon
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Feb 21, 2023
1 parent 17f9fc6 commit e82c0a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mui-material/src/OutlinedInput/OutlinedInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ const OutlinedInput = React.forwardRef(function OutlinedInput(inProps, ref) {
label != null && label !== '' && fcs.required ? (
<React.Fragment>
{label}
&nbsp;{'*'}
&thinsp;{'*'}
</React.Fragment>
) : (
label
Expand Down

0 comments on commit e82c0a6

Please sign in to comment.