Fix library manga menu "mark as read" item visibility

Regression ef9e65cf9a
This commit is contained in:
schroda
2026-07-02 19:10:02 +02:00
parent 0df0b03669
commit 18d926bac4

View File

@@ -84,7 +84,7 @@ export const MangaActionMenuItems = ({
const isDownloadable = !!manga && !!manga.chapters.totalCount && !Mangas.isFullyDownloaded(manga);
const hasDownloadedChapters = manga && Mangas.isPartiallyDownloaded(manga);
const hasUnreadChapters = manga && Mangas.isPartiallyRead(manga);
const hasUnreadChapters = manga && !!manga.chapters.totalCount && !Mangas.isFullyRead(manga);
const hasReadChapters = !!manga && Mangas.isPartiallyRead(manga);
const handleSelect = () => {