diff options
| author | Fuwn <[email protected]> | 2024-10-09 00:41:20 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-09 00:41:43 -0700 |
| commit | 998b63a35256ac985a5a2714dd1ca451af4dfd8a (patch) | |
| tree | 50796121a9d5ab0330fdc5d7e098bda2860d9726 /src/lib/Reader/Chapters/Rawkuma.svelte | |
| parent | feat(graphql): add badgeCount field (diff) | |
| download | due.moe-998b63a35256ac985a5a2714dd1ca451af4dfd8a.tar.xz due.moe-998b63a35256ac985a5a2714dd1ca451af4dfd8a.zip | |
chore(prettier): use spaces instead of tabs
Diffstat (limited to 'src/lib/Reader/Chapters/Rawkuma.svelte')
| -rw-r--r-- | src/lib/Reader/Chapters/Rawkuma.svelte | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/lib/Reader/Chapters/Rawkuma.svelte b/src/lib/Reader/Chapters/Rawkuma.svelte index 5a7e57ad..720c65d5 100644 --- a/src/lib/Reader/Chapters/Rawkuma.svelte +++ b/src/lib/Reader/Chapters/Rawkuma.svelte @@ -1,22 +1,22 @@ <script lang="ts"> - import { getChaptersFromText } from '$lib/Data/Manga/raw'; - import { onMount } from 'svelte'; + import { getChaptersFromText } from '$lib/Data/Manga/raw'; + import { onMount } from 'svelte'; - export let data: string; + export let data: string; - onMount(() => { - console.log(); - }); + onMount(() => { + console.log(); + }); </script> <ul> - {#each getChaptersFromText(data) as chapter} - <li> - {chapter.chapterDate} - <span class="opaque">|</span> - <a href={chapter.href} target="_blank" rel="noopener noreferrer"> - {chapter.chapterNum} - </a> - </li> - {/each} + {#each getChaptersFromText(data) as chapter} + <li> + {chapter.chapterDate} + <span class="opaque">|</span> + <a href={chapter.href} target="_blank" rel="noopener noreferrer"> + {chapter.chapterNum} + </a> + </li> + {/each} </ul> |