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} + + ")" + ) }