diff options
| author | Fuwn <[email protected]> | 2023-08-30 17:22:04 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-08-30 17:22:04 -0700 |
| commit | 4979937b470e9449c182bbbe5b8c836d1fec3427 (patch) | |
| tree | 5e68157539b3652f4ec4ddeec9cf6a3a676c89b2 /src/lib/List/Due | |
| parent | fix(manga): silly type fudging (diff) | |
| download | due.moe-4979937b470e9449c182bbbe5b8c836d1fec3427.tar.xz due.moe-4979937b470e9449c182bbbe5b8c836d1fec3427.zip | |
format(list): a11y anchor warnings
Diffstat (limited to 'src/lib/List/Due')
| -rw-r--r-- | src/lib/List/Due/AnimeList.svelte | 2 | ||||
| -rw-r--r-- | src/lib/List/Due/MangaList.svelte | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/List/Due/AnimeList.svelte b/src/lib/List/Due/AnimeList.svelte index 8701fbd2..39916f19 100644 --- a/src/lib/List/Due/AnimeList.svelte +++ b/src/lib/List/Due/AnimeList.svelte @@ -150,7 +150,7 @@ </a> <span style="opacity: 50%;">|</span> {(anime.mediaListEntry || { progress: 0 }).progress}{@html totalEpisodes(anime)} - <a href="#" on:click={() => updateMedia(anime.id, anime.mediaListEntry?.progress)}>+</a> + <a href={'#'} on:click={() => updateMedia(anime.id, anime.mediaListEntry?.progress)}>+</a> [{anime.nextAiringEpisode?.episode === -1 ? '?' : (anime.nextAiringEpisode?.episode || 1) - 1}] diff --git a/src/lib/List/Due/MangaList.svelte b/src/lib/List/Due/MangaList.svelte index bf6a57ab..e6d82547 100644 --- a/src/lib/List/Due/MangaList.svelte +++ b/src/lib/List/Due/MangaList.svelte @@ -125,7 +125,7 @@ </a> <span style="opacity: 50%;">|</span> {(manga.mediaListEntry || { progress: 0 }).progress} - <a href="#" on:click={() => updateMedia(manga.id, manga.mediaListEntry?.progress)}>+</a> + <a href={'#'} on:click={() => updateMedia(manga.id, manga.mediaListEntry?.progress)}>+</a> [{manga.episodes || '?'}] </li> {/each} |