feat(post): add tooltip to comment edit timestamp

This commit is contained in:
Tom (plebeius.eth)
2024-07-07 14:49:17 +02:00
parent ff72365151
commit e716a45a31
37 changed files with 42 additions and 37 deletions
@@ -236,7 +236,7 @@ const PostPageStats = () => {
<span>
{(pinned || isInDescriptionView || isInRulesView) && 'Sticky / '}
{(closed || isInDescriptionView || isInRulesView) && 'Closed / '}
<Tooltip children={replyCount.toString()} content='Replies' /> / <Tooltip children={linkCount.toString()} content='Links' />
<Tooltip children={replyCount?.toString()} content='Replies' /> / <Tooltip children={linkCount?.toString()} content='Links' />
</span>
);
};