Skip to content

Commit

Permalink
[docs] Fix inconsistent multi input range field separators
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviendelangle committed Dec 31, 2024
1 parent 20e037b commit 3c5d88c
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 3c5d88c

Please sign in to comment.