coderabbit fixes
This commit is contained in:
@@ -10,7 +10,7 @@ const { tags } = Astro.props;
|
||||
{
|
||||
tags.sort().map((tag: string, index: number) => (
|
||||
<>
|
||||
<a class="tag" href={`/blog/tag/${tag}`}>
|
||||
<a class="tag" href={`/blog/tag/${encodeURIComponent(tag)}`}>
|
||||
{tag}
|
||||
</a>
|
||||
{index < tags.length - 1 ? ' | ' : ''}
|
||||
|
||||
Reference in New Issue
Block a user