Fix library manga menu "mark as read" item visibility
Regression ef9e65cf9a
This commit is contained in:
@@ -84,7 +84,7 @@ export const MangaActionMenuItems = ({
|
|||||||
|
|
||||||
const isDownloadable = !!manga && !!manga.chapters.totalCount && !Mangas.isFullyDownloaded(manga);
|
const isDownloadable = !!manga && !!manga.chapters.totalCount && !Mangas.isFullyDownloaded(manga);
|
||||||
const hasDownloadedChapters = manga && Mangas.isPartiallyDownloaded(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 hasReadChapters = !!manga && Mangas.isPartiallyRead(manga);
|
||||||
|
|
||||||
const handleSelect = () => {
|
const handleSelect = () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user