We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05785db commit 9e14ddbCopy full SHA for 9e14ddb
components/comment.js
@@ -310,8 +310,9 @@ function ReplyOnAnotherPage ({ item }) {
310
}
311
312
return (
313
- <Link href={`/items/${rootId}?commentId=${item.id}`} as={`/items/${rootId}`} className='d-block pb-2 fw-bold text-muted'>
+ <Link href={`/items/${rootId}?commentId=${item.id}`} as={`/items/${rootId}`} className='pb-2 fw-bold d-flex align-items-center gap-2 text-muted'>
314
{text}
315
+ {item.newComments?.length > 0 && <div className={styles.newCommentDot} />}
316
</Link>
317
)
318
0 commit comments