From 27250bd42069968a48ae482ce2b2f9af930dee9a Mon Sep 17 00:00:00 2001 From: Egbert Bouman Date: Wed, 13 Nov 2024 11:48:56 +0100 Subject: [PATCH] Fix for large dir names in SelectRemotePath --- src/tribler/ui/src/dialogs/SelectRemotePath.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tribler/ui/src/dialogs/SelectRemotePath.tsx b/src/tribler/ui/src/dialogs/SelectRemotePath.tsx index 36241b1f27..679b74039c 100644 --- a/src/tribler/ui/src/dialogs/SelectRemotePath.tsx +++ b/src/tribler/ui/src/dialogs/SelectRemotePath.tsx @@ -55,7 +55,7 @@ export default function SelectRemotePath(props: SelectRemotePathProps & JSX.Intr Please select a {selectDir ? 'directory' : 'file'} - {currentPath || initialPath} + {currentPath || initialPath} @@ -79,7 +79,7 @@ export default function SelectRemotePath(props: SelectRemotePathProps & JSX.Intr - {!selectDir &&

{lastClicked?.path || initialPath}

} + {!selectDir &&

{lastClicked?.path || initialPath}

}