Skip to content

Commit

Permalink
fix: fix broken tags in PostDetails page
Browse files Browse the repository at this point in the history
  • Loading branch information
satnaing committed Jan 29, 2023
1 parent c556202 commit a61fd45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Tag.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const { name, size = "sm" } = Astro.props;
}`}
>
<a
href={`/tags/${name}`}
class={`${size === "sm" ? "pr-1 text-sm" : "pr-2 text-lg"} group`}
href={`/tags/${name.toLowerCase()}`}
class={`${size === "sm" ? "text-sm" : "text-lg"} pr-2 group`}
>
<svg
xmlns="http://www.w3.org/2000/svg"
Expand All @@ -23,7 +23,7 @@ const { name, size = "sm" } = Astro.props;
d="M16.018 3.815 15.232 8h-4.966l.716-3.815-1.964-.37L8.232 8H4v2h3.857l-.751 4H3v2h3.731l-.714 3.805 1.965.369L8.766 16h4.966l-.714 3.805 1.965.369.783-4.174H20v-2h-3.859l.751-4H21V8h-3.733l.716-3.815-1.965-.37zM14.106 14H9.141l.751-4h4.966l-.752 4z"
></path>
</svg>
&nbsp;<span>{name}</span>
&nbsp;<span>{name.toLowerCase()}</span>
</a>
</li>

Expand Down

0 comments on commit a61fd45

Please sign in to comment.