Skip to content

Commit 0f9b89e

Browse files
author
Roman Snapko
committed
Remove max-width and truncate from folder breadcrumb path tokens
1 parent 26a6771 commit 0f9b89e

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)