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 | |
| 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')
| -rw-r--r-- | src/lib/List/Anime/CleanAnimeList.svelte | 2 | ||||
| -rw-r--r-- | src/lib/List/CleanMangaList.svelte | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/List/Anime/CleanAnimeList.svelte b/src/lib/List/Anime/CleanAnimeList.svelte index ce64f141..d480aca7 100644 --- a/src/lib/List/Anime/CleanAnimeList.svelte +++ b/src/lib/List/Anime/CleanAnimeList.svelte @@ -44,7 +44,7 @@ : `https://anilist.co/anime/${anime.id}`} target="_blank" > - {#if lastUpdatedMedia === anime.id} + {#if lastUpdatedMedia === anime.id && anime.mediaListEntry?.progress !== progress} <span style="color: lightcoral"> {anime.title.english || anime.title.romaji || anime.title.native} </span> 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> |