Skip to content

Commit

Permalink
Merge pull request #55 from ergoplatform/bug/issue-36
Browse files Browse the repository at this point in the history
[ISSUE-36][BUG] Fix tags css on blog post card
  • Loading branch information
deadit authored Sep 19, 2022
2 parents 31d8b1e + 31303c8 commit 005bb7c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions components/shared/Post.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export default function Post({
<div className="absolute left-4 top-4">
{tags
?.split(',')
.slice(0, 3)
.filter((word: string) => word.length > 0)
.map((item) => (
<Link href={`/category/${item.trim()}`} key={item.trim()} passHref>
Expand Down

0 comments on commit 005bb7c

Please sign in to comment.