mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix sort order on Oldest First, default subs to all
This commit is contained in:
parent
f6bfdf6a93
commit
a9729e06c0
2 changed files with 2 additions and 2 deletions
|
|
@ -107,7 +107,7 @@ function SavedSearches(props: LibraryFilterMenuProps): JSX.Element {
|
|||
},
|
||||
{
|
||||
name: 'Oldest First',
|
||||
term: 'sort:saved-desc',
|
||||
term: 'sort:saved-asc',
|
||||
},
|
||||
{
|
||||
name: 'Files',
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ type SubscriptionsData = {
|
|||
}
|
||||
|
||||
export function useGetSubscriptionsQuery(
|
||||
type: SubscriptionType | undefined,
|
||||
type: SubscriptionType | undefined = undefined,
|
||||
sortBy = 'UPDATED_TIME'
|
||||
): SubscriptionsQueryResponse {
|
||||
const query = gql`
|
||||
|
|
|
|||
Loading…
Reference in a new issue