From 08c53fd1b614664e451c92279b0f745ee862106e 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 3fb39aca85..4d9d328494 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}

}