upstream #1

Merged
jblu merged 1007 commits from upstream into main 2024-11-04 22:35:57 -06:00
Showing only changes of commit 396b13a66b - Show all commits

View File

@ -100,7 +100,7 @@ export default function ListLayoutWithTags({
{sortedTags.map((t) => {
return (
<li key={t} className="my-3">
{pathname.split('/tags/')[1] === slug(t) ? (
{decodeURI(pathname.split('/tags/')[1]) === slug(t) ? (
<h3 className="inline px-3 py-2 text-sm font-bold uppercase text-primary-500">
{`${t} (${tagCounts[t]})`}
</h3>