mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-16 09:11:38 +00:00
Fix tags is missing
This commit is contained in:
@ -73,10 +73,12 @@ const PostCard: FC<Props> = ({ post }) => {
|
||||
</Flex>
|
||||
) : (
|
||||
// Signal tags
|
||||
<Flex alignItems="center" mr="1rem">
|
||||
<Icon as={FiTag} mr="0.5rem" />
|
||||
<Text>{post.tags}</Text>
|
||||
</Flex>
|
||||
post.tags && (
|
||||
<Flex alignItems="center" mr="1rem">
|
||||
<Icon as={FiTag} mr="0.5rem" />
|
||||
<Text>{post.tags}</Text>
|
||||
</Flex>
|
||||
)
|
||||
)}
|
||||
</Flex>
|
||||
</Flex>
|
||||
|
Reference in New Issue
Block a user