diff options
| author | Fuwn <[email protected]> | 2023-10-21 03:40:44 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-10-21 03:40:44 -0700 |
| commit | 95d76ef56500e6cf22e89531a8139be493bdb53d (patch) | |
| tree | 75e88c97de91f501cc6d1fc9c4e03352644e3ce8 /src/lib/List/CleanMangaList.svelte | |
| parent | fix(settings): hint formatting (diff) | |
| download | due.moe-95d76ef56500e6cf22e89531a8139be493bdb53d.tar.xz due.moe-95d76ef56500e6cf22e89531a8139be493bdb53d.zip | |
fix(list): hide caught up last updated highlight
Diffstat (limited to 'src/lib/List/CleanMangaList.svelte')
| -rw-r--r-- | src/lib/List/CleanMangaList.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/List/CleanMangaList.svelte b/src/lib/List/CleanMangaList.svelte index a56a1c81..55fb72fc 100644 --- a/src/lib/List/CleanMangaList.svelte +++ b/src/lib/List/CleanMangaList.svelte @@ -33,7 +33,7 @@ <li> <a href={`https://anilist.co/manga/${manga.id}`} target="_blank"> - {#if lastUpdatedMedia === manga.id} + {#if lastUpdatedMedia === manga.id && manga.mediaListEntry?.progress !== progress} <span style="color: lightcoral"> {manga.title.english || manga.title.romaji || manga.title.native} </span> |