diff options
author | Anderson Shindy Oki <[email protected]> | 2024-12-03 15:04:28 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2024-12-03 15:04:28 +0900 |
commit | 8dc686e902df6a0b421f5c6fb36f24661e09db8a (patch) | |
tree | 60c1ea57e5d47a495f9b6445e0f06ce0d3c2b607 | |
parent | c62afe7d02d84718d8213c3b274c5ce58bef6551 (diff) | |
download | bazarr-8dc686e902df6a0b421f5c6fb36f24661e09db8a.tar.gz bazarr-8dc686e902df6a0b421f5c6fb36f24661e09db8a.zip |
Fixed item overview path label overflow (#2780)
-rw-r--r-- | frontend/src/pages/views/ItemOverview.tsx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/frontend/src/pages/views/ItemOverview.tsx b/frontend/src/pages/views/ItemOverview.tsx index 36d296850..d611d5a85 100644 --- a/frontend/src/pages/views/ItemOverview.tsx +++ b/frontend/src/pages/views/ItemOverview.tsx @@ -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 |