Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/8dc686e902df6a0b421f5c6fb36f24661e09db8a You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed item overview path label overflow ()

pull/2786/head
Anderson Shindy Oki 4 months 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