diff options
| author | Fuwn <[email protected]> | 2023-09-25 21:41:53 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-25 21:41:53 -0700 |
| commit | 1e2c754ea1813b87636c405eb10cf135a6517260 (patch) | |
| tree | 9016e6b81b89c7b23601c74dc4920f762c8cdf7e /src/routes | |
| parent | refactor(anime): use title component (diff) | |
| download | due.moe-1e2c754ea1813b87636c405eb10cf135a6517260.tar.xz due.moe-1e2c754ea1813b87636c405eb10cf135a6517260.zip | |
refactor(completed): title component
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/+page.svelte | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 9a9f598d..f617f618 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -129,7 +129,8 @@ {#if currentUserIdentity.id != -1} <WatchingAnimeList user={data.user} identity={currentUserIdentity} /> {:else} - <summary>Completed Anime [...] <small style="opacity: 50%">...s</small></summary> + <ListTitle custom="Completed Anime" /> + <ul><li>Loading ...</li></ul> {/if} </details> |