Skip to content

Commit

Permalink
Merge pull request #8052 from drew2a/feature/6444
Browse files Browse the repository at this point in the history
Add health column to popular torrents display
  • Loading branch information
drew2a authored Jun 4, 2024
2 parents c221128 + 8adc2f0 commit d752e9e
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 d752e9e

Please sign in to comment.