1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-01-03 13:35:18 +00:00

Fixed item overview path label overflow (#2780)

This commit is contained in:
Anderson Shindy Oki 2024-12-03 15:04:28 +09:00 committed by GitHub
parent c62afe7d02
commit 8dc686e902
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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