Skip to content

Commit

Permalink
[docs] Fix inconsistent multi input range field separators (mui#16043)
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviendelangle authored Dec 31, 2024
1 parent f689693 commit 2f4af7e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const BrowserMultiInputDateRangeField = React.forwardRef((props, ref) => {
className={className}
>
<BrowserTextField {...fieldResponse.startDate} />
<span> </span>
<span> </span>
<BrowserTextField {...fieldResponse.endDate} />
</Stack>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ const BrowserMultiInputDateRangeField = React.forwardRef(
className={className}
>
<BrowserTextField {...fieldResponse.startDate} />
<span> </span>
<span> </span>
<BrowserTextField {...fieldResponse.endDate} />
</Stack>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const MultiInputJoyDateRangeFieldSeparator = styled(
<FormControl>
{/* Ensure that the separator is correctly aligned */}
<span />
<Typography {...props}>{props.children ?? ' '}</Typography>
<Typography {...props}>{props.children ?? ' '}</Typography>
</FormControl>
),
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const MultiInputJoyDateRangeFieldSeparator = styled(
<FormControl>
{/* Ensure that the separator is correctly aligned */}
<span />
<Typography {...props}>{props.children ?? ' '}</Typography>
<Typography {...props}>{props.children ?? ' '}</Typography>
</FormControl>
),
{
Expand Down

0 comments on commit 2f4af7e

Please sign in to comment.