Update highlights query for new users
This commit is contained in:
@ -160,7 +160,7 @@ const createDefaultFiltersForUser =
|
||||
filter: 'in:inbox sort:read-desc is:reading',
|
||||
},
|
||||
{ name: 'Non-Feed Items', filter: 'no:subscription' },
|
||||
{ name: 'Highlights', filter: 'has:highlights mode:highlights' },
|
||||
{ name: 'Highlights', filter: 'in:all has:highlights mode:highlights' },
|
||||
{ name: 'Unlabeled', filter: 'no:label' },
|
||||
{ name: 'Oldest First', filter: 'sort:saved-asc' },
|
||||
{ name: 'Files', filter: 'type:file' },
|
||||
|
||||
@ -171,7 +171,9 @@ export const EmptyLibrary = (props: EmptyLibraryProps) => {
|
||||
return 'continue'
|
||||
case 'no:subscription':
|
||||
return 'non-feed'
|
||||
// Handle both cases while we migrate
|
||||
case 'has:highlights mode:highlights':
|
||||
case 'in:all has:highlights mode:highlights':
|
||||
return 'highlight'
|
||||
case 'no:label':
|
||||
return 'unlabeled'
|
||||
|
||||
Reference in New Issue
Block a user