Skip to content

Commit

Permalink
fix: decode unicode tag chars in breadcrumb (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
yueim committed Dec 12, 2023
1 parent 4bbb3e5 commit 058c790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Breadcrumbs.astro
Expand Up @@ -27,7 +27,7 @@ breadcrumbList[0] === "posts" &&
aria-current="page"
>
{/* make the last part lowercase in Home > Tags > some-tag */}
{breadcrumb}
{decodeURIComponent(breadcrumb)}
</span>
</li>
) : (
Expand Down

0 comments on commit 058c790

Please sign in to comment.