mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 05:47:22 -04:00
Fixed: Sort options in Search Sort menu
This commit is contained in:
parent
6d17b97af1
commit
bd27c04050
1 changed files with 65 additions and 2 deletions
|
@ -21,12 +21,21 @@ function SearchIndexSortMenu(props) {
|
|||
>
|
||||
<MenuContent>
|
||||
<SortMenuItem
|
||||
name="status"
|
||||
name="protocol"
|
||||
sortKey={sortKey}
|
||||
sortDirection={sortDirection}
|
||||
onPress={onSortSelect}
|
||||
>
|
||||
Monitored/Status
|
||||
Protocol
|
||||
</SortMenuItem>
|
||||
|
||||
<SortMenuItem
|
||||
name="age"
|
||||
sortKey={sortKey}
|
||||
sortDirection={sortDirection}
|
||||
onPress={onSortSelect}
|
||||
>
|
||||
Age
|
||||
</SortMenuItem>
|
||||
|
||||
<SortMenuItem
|
||||
|
@ -37,6 +46,60 @@ function SearchIndexSortMenu(props) {
|
|||
>
|
||||
{translate('Title')}
|
||||
</SortMenuItem>
|
||||
|
||||
<SortMenuItem
|
||||
name="indexer"
|
||||
sortKey={sortKey}
|
||||
sortDirection={sortDirection}
|
||||
onPress={onSortSelect}
|
||||
>
|
||||
Indexer
|
||||
</SortMenuItem>
|
||||
|
||||
<SortMenuItem
|
||||
name="size"
|
||||
sortKey={sortKey}
|
||||
sortDirection={sortDirection}
|
||||
onPress={onSortSelect}
|
||||
>
|
||||
Size
|
||||
</SortMenuItem>
|
||||
|
||||
<SortMenuItem
|
||||
name="files"
|
||||
sortKey={sortKey}
|
||||
sortDirection={sortDirection}
|
||||
onPress={onSortSelect}
|
||||
>
|
||||
Files
|
||||
</SortMenuItem>
|
||||
|
||||
<SortMenuItem
|
||||
name="grabs"
|
||||
sortKey={sortKey}
|
||||
sortDirection={sortDirection}
|
||||
onPress={onSortSelect}
|
||||
>
|
||||
Grabs
|
||||
</SortMenuItem>
|
||||
|
||||
<SortMenuItem
|
||||
name="peers"
|
||||
sortKey={sortKey}
|
||||
sortDirection={sortDirection}
|
||||
onPress={onSortSelect}
|
||||
>
|
||||
Peers
|
||||
</SortMenuItem>
|
||||
|
||||
<SortMenuItem
|
||||
name="category"
|
||||
sortKey={sortKey}
|
||||
sortDirection={sortDirection}
|
||||
onPress={onSortSelect}
|
||||
>
|
||||
Category
|
||||
</SortMenuItem>
|
||||
</MenuContent>
|
||||
</SortMenu>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue