Skip to content

Commit c087a03

Browse files
fix: open release in new tab (#314)
1 parent 16947c1 commit c087a03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/pages/changelog.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ releases.push({
5252
{releases.map(({ body, html_url, name, published_at }) => (
5353
<>
5454
<h2>
55-
<a href={html_url} class='font-semibold'>{name}</a>
55+
<a href={html_url} class='font-semibold' target="_blank">{name}</a>
5656
- <time class="font-normal" datetime={published_at}>{new Date(published_at).toLocaleDateString('sv-SE')}</time>
5757
</h2>
5858
<div set:html={marked.parse(body)} />

0 commit comments

Comments
 (0)