Skip to content

Commit 52bc607

Browse files
Fixed divider in the tooltip (#29357)
1 parent f4b9077 commit 52bc607

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

packages/react-components/react-breadcrumb-preview/stories/Breadcrumb/BreadcrumbWithTooltip.stories.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,7 @@ const getTooltipContent = (breadcrumbItems: readonly Item[] | undefined) => {
182182
return (
183183
<>
184184
{acc}
185-
{arr[0].item !== initialValue.item && (
186-
<BreadcrumbDivider style={{ display: 'inline', verticalAlign: 'middle' }} />
187-
)}
185+
{arr[0].item !== initialValue.item && ' > '}
188186
{initialValue.item}
189187
</>
190188
);

0 commit comments

Comments
 (0)