diff options
| author | Fuwn <[email protected]> | 2024-01-25 04:32:19 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-25 04:32:19 -0800 |
| commit | 9445d317ac3adc2cebd44c97540092c40260a9ad (patch) | |
| tree | fcd55c54ac7f1e6dbc100e22f719493a5b82b920 /src/lib/List/Manga | |
| parent | feat(locale): localise profile page (diff) | |
| download | due.moe-9445d317ac3adc2cebd44c97540092c40260a9ad.tar.xz due.moe-9445d317ac3adc2cebd44c97540092c40260a9ad.zip | |
feat: hide loading progress
Diffstat (limited to 'src/lib/List/Manga')
| -rw-r--r-- | src/lib/List/Manga/MangaListTemplate.svelte | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/lib/List/Manga/MangaListTemplate.svelte b/src/lib/List/Manga/MangaListTemplate.svelte index 1fa85a5c..ded2d197 100644 --- a/src/lib/List/Manga/MangaListTemplate.svelte +++ b/src/lib/List/Manga/MangaListTemplate.svelte @@ -226,11 +226,7 @@ {authorised} /> {:else} - {#if authorised} - <ListTitle /> - {/if} - - <ul><li>Loading {progress.toFixed(0)}% ...</li></ul> + <ListTitle {progress} /> <Skeleton card={false} count={5} height="0.9rem" list /> {/if} @@ -263,11 +259,7 @@ {authorised} /> {:else} - {#if authorised} - <ListTitle /> - {/if} - - <ul><li>Loading {progress.toFixed(0)}% ...</li></ul> + <ListTitle {progress} /> <Skeleton card={false} count={5} height="0.9rem" list /> {/if} |