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:
parent
c62afe7d02
commit
8dc686e902
1 changed files with 9 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue