diff --git a/src/tribler/ui/src/dialogs/SelectRemotePath.tsx b/src/tribler/ui/src/dialogs/SelectRemotePath.tsx index 3fb39aca85..36241b1f27 100644 --- a/src/tribler/ui/src/dialogs/SelectRemotePath.tsx +++ b/src/tribler/ui/src/dialogs/SelectRemotePath.tsx @@ -72,7 +72,7 @@ export default function SelectRemotePath(props: SelectRemotePathProps & JSX.Intr > {item.dir && } {!item.dir && } - {item.name} + {item.name} ))} diff --git a/src/tribler/ui/src/pages/Downloads/index.tsx b/src/tribler/ui/src/pages/Downloads/index.tsx index d794189360..17a7fa48dd 100644 --- a/src/tribler/ui/src/pages/Downloads/index.tsx +++ b/src/tribler/ui/src/pages/Downloads/index.tsx @@ -54,6 +54,9 @@ const downloadColumns: ColumnDef[] = [ ) }, + cell: ({ row }) => { + return {row.original.name} + }, }, { accessorKey: "size", diff --git a/src/tribler/ui/src/pages/Popular/index.tsx b/src/tribler/ui/src/pages/Popular/index.tsx index 216a9c60ac..3a9d6eed11 100644 --- a/src/tribler/ui/src/pages/Popular/index.tsx +++ b/src/tribler/ui/src/pages/Popular/index.tsx @@ -32,7 +32,7 @@ const getColumns = ({ onDownload }: { onDownload: (torrent: Torrent) => void }): header: translateHeader('Name'), cell: ({ row }) => { return onDownload(row.original)}> {row.original.name} diff --git a/src/tribler/ui/src/pages/Search/index.tsx b/src/tribler/ui/src/pages/Search/index.tsx index 6d49060ecd..8d920ceccd 100644 --- a/src/tribler/ui/src/pages/Search/index.tsx +++ b/src/tribler/ui/src/pages/Search/index.tsx @@ -33,7 +33,7 @@ const getColumns = ({ onDownload }: { onDownload: (torrent: Torrent) => void }): header: "Name", cell: ({ row }) => { return onDownload(row.original)}> {row.original.name}