summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/organisms/KeywordsList.astro8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/organisms/KeywordsList.astro b/src/components/organisms/KeywordsList.astro
index 3a1cd20..be9a38c 100644
--- a/src/components/organisms/KeywordsList.astro
+++ b/src/components/organisms/KeywordsList.astro
@@ -8,10 +8,10 @@ const { keywords } = Astro.props;
<p role="list">
{
- keywords.map((x) => (
- <span role="listitem"><a href={`/blog/keywords/${x}`}>#<b
- itemprop="keywords"
- >{x}</b></a></span>
+ keywords.map((x, i) => (
+ <>{i > 0 && " "}<span role="listitem"><a href={`/blog/keywords/${x}`}>#<b
+ itemprop="keywords"
+ >{x}</b></a></span></>
))
}
</p>