diff options
| author | Fuwn <[email protected]> | 2023-12-29 21:48:57 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-29 21:48:57 -0800 |
| commit | 4d75f1af0428faeae34b970c56163999dedc77de (patch) | |
| tree | 063a5f502467ffd4db502a227b81c944f3286a71 /src/lib/List | |
| parent | fix(wrapped): ranking title for manga (diff) | |
| download | due.moe-4d75f1af0428faeae34b970c56163999dedc77de.tar.xz due.moe-4d75f1af0428faeae34b970c56163999dedc77de.zip | |
feat(manga): disable manga panel no manga
Diffstat (limited to 'src/lib/List')
| -rw-r--r-- | src/lib/List/Manga/CleanMangaList.svelte | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/src/lib/List/Manga/CleanMangaList.svelte b/src/lib/List/Manga/CleanMangaList.svelte index 95db1a8a..8a578252 100644 --- a/src/lib/List/Manga/CleanMangaList.svelte +++ b/src/lib/List/Manga/CleanMangaList.svelte @@ -46,11 +46,21 @@ {#if media.length === 0} <ul> <li> - No manga to display. <a - href={'#'} - on:click={cleanCache} - data-umami-event="Force Refresh No Manga">Force refresh</a - > + <p> + No manga to display. <a + href={'#'} + on:click={cleanCache} + data-umami-event="Force Refresh No Manga">Force refresh</a + > + </p> + + <p> + Don't read manga? <a + href={'#'} + on:click={() => ($settings.disableManga = true)} + data-umami-event="Disable No Manga">Click here to hide the manga panel</a + >. You can re-enable it in the <a href="/settings">Settings</a>. + </p> </li> </ul> {/if} |