Skip to content

Commit

Permalink
Fixup changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenny-Hui committed Aug 8, 2024
1 parent 4991f98 commit e7e9573
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/layout/about/About.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@
</section>
<section>
<h1>Changelogs</h1>
<hr>
<div class="changelogs">
{#each versions as version}
<hr>
<h2>{version.name}</h2>
{#each version.body.split("\r\n") as line}
{#each version.body.split("\n") as line}
<p>{line}</p>
{/each}
{/each}
</div>
<hr>
</section>
</main>

Expand Down Expand Up @@ -61,7 +61,7 @@
}
hr {
margin: 1rem;
margin: 1rem 0;
box-sizing: border-box;
}
Expand Down

0 comments on commit e7e9573

Please sign in to comment.