diff options
| author | Fuwn <[email protected]> | 2023-09-26 22:51:16 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-26 22:51:16 -0700 |
| commit | 16ad63d8521b8ccc9528cb447e27195dbec9b903 (patch) | |
| tree | f16b169ec3203f1b1b487e32db7aff599501db65 /src/lib/List | |
| parent | refactor(list): template filesystem name (diff) | |
| download | due.moe-16ad63d8521b8ccc9528cb447e27195dbec9b903.tar.xz due.moe-16ad63d8521b8ccc9528cb447e27195dbec9b903.zip | |
fix(anime): template increment render
Diffstat (limited to 'src/lib/List')
| -rw-r--r-- | src/lib/List/AnimeListTemplate.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/List/AnimeListTemplate.svelte b/src/lib/List/AnimeListTemplate.svelte index 3c05c805..b7156e69 100644 --- a/src/lib/List/AnimeListTemplate.svelte +++ b/src/lib/List/AnimeListTemplate.svelte @@ -50,7 +50,7 @@ {anime.title.english || anime.title.romaji || anime.title.native} </a> <span style="opacity: 50%;">|</span> - {#if title === 'Upcoming Episodes'} + {#if title !== 'Upcoming Episodes'} <!-- {anime.mediaListEntry?.progress || 0}{@html totalEpisodes(anime)} --> {(anime.mediaListEntry || { progress: 0 }).progress}{@html totalEpisodes(anime)} <a |