Skip to content

Commit

Permalink
Fix dealing with large swarm names (#8261)
Browse files Browse the repository at this point in the history
  • Loading branch information
egbertbouman authored Nov 13, 2024
2 parents 77d9615 + 45e7986 commit a634002
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/tribler/ui/src/dialogs/SelectRemotePath.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default function SelectRemotePath(props: SelectRemotePathProps & JSX.Intr
>
{item.dir && <Folder className="pr-2" />}
{!item.dir && <FileIcon className="pr-2" />}
{item.name}
<span className="break-all line-clamp-1">{item.name}</span>
</div>
))}
</div>
Expand Down
3 changes: 3 additions & 0 deletions src/tribler/ui/src/pages/Downloads/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ const downloadColumns: ColumnDef<Download>[] = [
</Button>
)
},
cell: ({ row }) => {
return <span className="break-all line-clamp-1">{row.original.name}</span>
},
},
{
accessorKey: "size",
Expand Down
2 changes: 1 addition & 1 deletion src/tribler/ui/src/pages/Popular/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const getColumns = ({ onDownload }: { onDownload: (torrent: Torrent) => void }):
header: translateHeader('Name'),
cell: ({ row }) => {
return <span
className="inline-block cursor-pointer hover:underline line-clamp-1"
className="cursor-pointer hover:underline break-all line-clamp-1"
onClick={() => onDownload(row.original)}>
{row.original.name}
</span>
Expand Down
2 changes: 1 addition & 1 deletion src/tribler/ui/src/pages/Search/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const getColumns = ({ onDownload }: { onDownload: (torrent: Torrent) => void }):
header: "Name",
cell: ({ row }) => {
return <span
className="inline-block cursor-pointer hover:underline line-clamp-1"
className="cursor-pointer hover:underline break-all line-clamp-1"
onClick={() => onDownload(row.original)}>
{row.original.name}
</span>
Expand Down

0 comments on commit a634002

Please sign in to comment.