From 73f3318da1b2b0de7256c85e5dbf7b71c8d22f0f Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Wed, 8 Apr 2026 13:13:28 +0200 Subject: [PATCH] feat: update issue link text to 'Bug' and format link display --- src/components/ReleaseNoteItem.astro | 2 +- src/components/ReleaseNoteListItem.astro | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/components/ReleaseNoteItem.astro b/src/components/ReleaseNoteItem.astro index 4c1e961a..8c213523 100644 --- a/src/components/ReleaseNoteItem.astro +++ b/src/components/ReleaseNoteItem.astro @@ -61,7 +61,7 @@ const generateItems = (items: any, type: string) => { ...(item.issue ? { link: { - text: `Issue #${item.issue}`, + text: `Bug #${item.issue}`, href: `https://github.com/zen-browser/desktop/issues/${item.issue}`, }, } diff --git a/src/components/ReleaseNoteListItem.astro b/src/components/ReleaseNoteListItem.astro index f67e1904..f5c658db 100644 --- a/src/components/ReleaseNoteListItem.astro +++ b/src/components/ReleaseNoteListItem.astro @@ -40,9 +40,13 @@ const { {content && } { link && ( - - {link.text} - + <> + "(" + + {link.text} + + ")" + ) }