diff options
| author | Fuwn <[email protected]> | 2023-12-16 00:19:52 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-16 00:19:52 -0800 |
| commit | cedc294b232e2f902fb73a867788e4b5e48beebd (patch) | |
| tree | bbf5183576ecbabd6e03748244554599a2786c4f /src/lib/List | |
| parent | feat(settings): scroll to section (diff) | |
| download | due.moe-cedc294b232e2f902fb73a867788e4b5e48beebd.tar.xz due.moe-cedc294b232e2f902fb73a867788e4b5e48beebd.zip | |
feat(anime): right align countdown option
Diffstat (limited to 'src/lib/List')
| -rw-r--r-- | src/lib/List/Anime/CleanAnimeList.svelte | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/List/Anime/CleanAnimeList.svelte b/src/lib/List/Anime/CleanAnimeList.svelte index c4d61a3c..2c7c7e26 100644 --- a/src/lib/List/Anime/CleanAnimeList.svelte +++ b/src/lib/List/Anime/CleanAnimeList.svelte @@ -69,7 +69,9 @@ {#if $settings.displaySocialButton} [<a href={`https://anilist.co/anime/${anime.id}/social`} target="_blank">S</a>] {/if} - <span style="opacity: 50%;">|</span> + {#if !$settings.displayCountdownRightAligned || title !== 'Upcoming Episodes'} + <span style="opacity: 50%;">|</span> + {/if} {#if title !== 'Upcoming Episodes'} <!-- {anime.mediaListEntry?.progress || 0}{@html totalEpisodes(anime)} --> {pendingUpdate === anime.id ? progress + 1 : progress}{@html totalEpisodes(anime)} |