diff options
Diffstat (limited to 'src/lib/List/AnimeList.svelte')
| -rw-r--r-- | src/lib/List/AnimeList.svelte | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/lib/List/AnimeList.svelte b/src/lib/List/AnimeList.svelte index dd1b69ac..03d58b1f 100644 --- a/src/lib/List/AnimeList.svelte +++ b/src/lib/List/AnimeList.svelte @@ -13,7 +13,7 @@ export let animeLists: Promise<Media[]>; export let user: AniListAuthorisation; export let identity: UserIdentity; - export let displayUnresolved: boolean; + export let displayUnresolved = false; export let title: string; </script> @@ -51,6 +51,7 @@ {anime.title.english || anime.title.romaji || anime.title.native} </a> <span style="opacity: 50%;">|</span> + <!-- {anime.mediaListEntry?.progress || 0}{@html totalEpisodes(anime)} --> {(anime.mediaListEntry || { progress: 0 }).progress}{@html totalEpisodes(anime)} <a href={'#'} @@ -61,10 +62,12 @@ () => (animeLists = cleanCache(user, identity)) )}>+</a > - [{anime.nextAiringEpisode?.episode === -1 - ? '?' - : (anime.nextAiringEpisode?.episode || 1) - 1}] - {@html airingTime(anime)} + {#if !title.includes('Completed')} + [{anime.nextAiringEpisode?.episode === -1 + ? '?' + : (anime.nextAiringEpisode?.episode || 1) - 1}] + {@html airingTime(anime)} + {/if} </li> {/each} </ul> |