Add setting to show duplicated library entries

This commit is contained in:
schroda
2024-05-04 15:41:21 +02:00
parent 297ecd8b52
commit df66e180d8
5 changed files with 81 additions and 3 deletions

View File

@@ -74,10 +74,10 @@ export const MangaBadges = ({
{t('manga.button.in_library')}
</Typography>
)}
{showUnreadBadge && (unread ?? 0) > 0 && (
{showUnreadBadge && mode === 'default' && (unread ?? 0) > 0 && (
<Typography sx={{ backgroundColor: 'primary.dark' }}>{unread}</Typography>
)}
{showDownloadBadge && (downloadCount ?? 0) > 0 && (
{showDownloadBadge && mode === 'default' && (downloadCount ?? 0) > 0 && (
<Typography
sx={{
backgroundColor: 'success.dark',