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

(cherry picked from commit 31bf9e313e6a376f6ef3c46d53e2450088041033)
This commit is contained in:
Stevie Robinson 2024-09-15 19:23:12 +02:00 committed by servarr
parent c26c0d5bd6
commit 9c33fce578

View file

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