1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-03-05 13:20:20 -05:00

New: Add rating as option in sort dropdown on series overviews and posters views

This commit is contained in:
Stevie Robinson
2024-09-15 19:23:12 +02:00
committed by GitHub
parent 6cccacd4d7
commit 31bf9e313e

View File

@@ -153,6 +153,15 @@ function SeriesIndexSortMenu(props: SeriesIndexSortMenuProps) {
>
{translate('Tags')}
</SortMenuItem>
<SortMenuItem
name="ratings"
sortKey={sortKey}
sortDirection={sortDirection}
onPress={onSortSelect}
>
{translate('Rating')}
</SortMenuItem>
</MenuContent>
</SortMenu>
);