Skip to content

Commit

Permalink
Fix dealing with large swarm names
Browse files Browse the repository at this point in the history
  • Loading branch information
egbertbouman committed Nov 13, 2024
1 parent 56f477b commit a1262d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
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 a1262d4

Please sign in to comment.