diff options
| author | Fuwn <[email protected]> | 2023-09-25 21:37:54 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-25 21:37:54 -0700 |
| commit | 4b12e64915735f3b2a5e29073d208f87097f6285 (patch) | |
| tree | adf363f7755c5066a7f98b39dd6eea75928def5b /src/lib/List/Due/MangaList.svelte | |
| parent | feat(manga): replace list titles (diff) | |
| download | due.moe-4b12e64915735f3b2a5e29073d208f87097f6285.tar.xz due.moe-4b12e64915735f3b2a5e29073d208f87097f6285.zip | |
refactor(anime): use title component
Diffstat (limited to 'src/lib/List/Due/MangaList.svelte')
| -rw-r--r-- | src/lib/List/Due/MangaList.svelte | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/List/Due/MangaList.svelte b/src/lib/List/Due/MangaList.svelte index 0f3e511b..d7c37d48 100644 --- a/src/lib/List/Due/MangaList.svelte +++ b/src/lib/List/Due/MangaList.svelte @@ -7,7 +7,7 @@ import { chapterDatabase } from '$lib/Media/chapters'; import settings from '../../../stores/settings'; import lastPruneTimes from '../../../stores/lastPruneTimes'; - import MangaTitle from './MangaTitle.svelte'; + import ListTitle from './ListTitle.svelte'; export let user: AniListAuthorisation; export let identity: UserIdentity; @@ -128,18 +128,18 @@ </script> {#await mangaLists} - <MangaTitle /> + <ListTitle /> <ul><li>Loading ...</li></ul> {:then media} {#await cleanMedia(media, displayUnresolved)} - <MangaTitle /> + <ListTitle /> <ul><li>Loading ...</li></ul> {:then cleanedMedia} - <MangaTitle count={cleanedMedia.length} time={endTime / 1000}> + <ListTitle count={cleanedMedia.length} time={endTime / 1000}> <a href={'#'} title="Force a refresh" on:click={cleanCache}>Force</a> - </MangaTitle> + </ListTitle> {#if cleanedMedia.length === 0} <ul> @@ -162,7 +162,7 @@ </ul> {:catch} <summary>Manga & Light Novels [?] <small style="opacity: 50%">0s</small></summary> - <MangaTitle count={'?'} time={0} /> + <ListTitle count={'?'} time={0} /> <ul> <li> |