Skip to content

Commit 47431f5

Browse files
committed
switching from encodeURIComponent to encodeURI for changelog card navid
1 parent e2fc2d2 commit 47431f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/components/Changelog/Card.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const formattedDate = computed(() => {
1313
1414
const cardId = computed(() => (release.publishedAt ? `date-${formattedDate.value}` : undefined))
1515
16-
const navId = computed(() => `release-${encodeURIComponent(release.title)}`)
16+
const navId = computed(() => `release-${encodeURI(release.title)}:`)
1717
1818
function navigateToTitle() {
1919
navigateTo(`#${navId.value}`)

0 commit comments

Comments
 (0)