Add "started" library filter
This commit is contained in:
@@ -88,6 +88,11 @@ export const LibraryOptionsPanel = ({
|
||||
checked={categoryLibraryOptions.hasUnreadChapters}
|
||||
onChange={(c) => updateCategoryLibraryOptions('hasUnreadChapters', c)}
|
||||
/>
|
||||
<ThreeStateCheckboxInput
|
||||
label={t('global.filter.label.started')}
|
||||
checked={categoryLibraryOptions.hasReadChapters}
|
||||
onChange={(c) => updateCategoryLibraryOptions('hasReadChapters', c)}
|
||||
/>
|
||||
<ThreeStateCheckboxInput
|
||||
label={t('global.filter.label.downloaded')}
|
||||
checked={categoryLibraryOptions.hasDownloadedChapters}
|
||||
|
||||
@@ -26,6 +26,7 @@ export const LibraryToolbarMenu = ({
|
||||
const active =
|
||||
options.hasDownloadedChapters != null ||
|
||||
options.hasUnreadChapters != null ||
|
||||
options.hasReadChapters != null ||
|
||||
options.hasBookmarkedChapters != null ||
|
||||
options.hasDuplicateChapters != null ||
|
||||
Object.values(options.hasStatus).some((hasStatus) => hasStatus != null) ||
|
||||
|
||||
Reference in New Issue
Block a user