Skip to content

Commit

Permalink
Add health column to popular torrents display
Browse files Browse the repository at this point in the history
The popular torrents model now includes a 'health' column. This change enhances the information provided about each torrent, allowing users to make more informed decisions when selecting torrents.
  • Loading branch information
drew2a committed Jun 4, 2024
1 parent c221128 commit 8adc2f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tribler/gui/widgets/popular/popular_torrents_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


class PopularTorrentsModel(ChannelContentModel):
columns_shown = (Column.CATEGORY, Column.NAME, Column.SIZE, Column.CREATED)
columns_shown = (Column.CATEGORY, Column.NAME, Column.SIZE, Column.HEALTH, Column.CREATED)

def __init__(self, *args, **kwargs):
super().__init__(*args, endpoint_url='metadata/torrents/popular', **kwargs)

0 comments on commit 8adc2f0

Please sign in to comment.