Skip to content

Commit 999e1d7

Browse files
author
Roman Snapko
authored
Remove length limitation from breadcrumbs (#2123)
<!-- Ensure the title clearly reflects what was changed. Provide a clear and concise description of the changes made. The PR should only contain the changes related to the issue, and no other unrelated changes. --> Fixes OPS-3789 <img width="1919" height="993" alt="image" src="https://github.com/user-attachments/assets/03fb5253-3203-43d9-aca6-a9da40a99a17" />
1 parent b56b694 commit 999e1d7

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

packages/ui-components/src/components/folder-breadcrumbs/folder-breadcrumbs.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@ const FolderBreadcrumbs = ({
3737
{pathTokens.map((pathToken, idx) => (
3838
<React.Fragment key={pathToken + idx}>
3939
<ChevronRight className="h-7 w-7 text-foreground" />
40-
<span className="text-xl font-medium max-w-[225px] truncate">
41-
{pathToken}
42-
</span>
40+
<span className="text-xl font-medium">{pathToken}</span>
4341
</React.Fragment>
4442
))}
4543
</div>

0 commit comments

Comments
 (0)