Fixed item overview path label overflow (#2780)

pull/2786/head
Anderson Shindy Oki 1 month ago committed by GitHub
parent c62afe7d02
commit 8dc686e902
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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…
Cancel
Save