Skip to content

Commit

Permalink
Fixed item overview path label overflow (#2780)
Browse files Browse the repository at this point in the history
  • Loading branch information
anderson-oki authored Dec 3, 2024
1 parent c62afe7 commit 8dc686e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion frontend/src/pages/views/ItemOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,15 @@ const ItemOverview: FunctionComponent<Props> = (props) => {

if (item) {
badges.push(
<ItemBadge key="file-path" icon={faFolder} title="File Path">
<ItemBadge
key="file-path"
icon={faFolder}
title="File Path"
styles={{
root: { overflow: "unset" },
label: { overflow: "hidden" },
}}
>
<Tooltip
label={item.path}
multiline
Expand Down

0 comments on commit 8dc686e

Please sign in to comment.