show comment sats on hover
This commit is contained in:
parent
04d7e9c0ee
commit
0f5fc31803
|
@ -117,7 +117,7 @@ export default function Comment ({
|
||||||
<span> \ </span>
|
<span> \ </span>
|
||||||
</>}
|
</>}
|
||||||
<Link href={`/items/${item.id}`} passHref>
|
<Link href={`/items/${item.id}`} passHref>
|
||||||
<a className='text-reset'>{item.ncomments} replies</a>
|
<a title={`${item.commentSats} sats`} className='text-reset'>{item.ncomments} replies</a>
|
||||||
</Link>
|
</Link>
|
||||||
<span> \ </span>
|
<span> \ </span>
|
||||||
<Link href={`/${item.user.name}`} passHref>
|
<Link href={`/${item.user.name}`} passHref>
|
||||||
|
|
|
@ -82,7 +82,7 @@ export default function Item ({ item, rank, showFwdUser, toc, children }) {
|
||||||
<span> \ </span>
|
<span> \ </span>
|
||||||
</>}
|
</>}
|
||||||
<Link href={`/items/${item.id}`} passHref>
|
<Link href={`/items/${item.id}`} passHref>
|
||||||
<a className='text-reset'>{item.ncomments} comments</a>
|
<a title={`${item.commentSats} sats`} className='text-reset'>{item.ncomments} comments</a>
|
||||||
</Link>
|
</Link>
|
||||||
<span> \ </span>
|
<span> \ </span>
|
||||||
<span>
|
<span>
|
||||||
|
|
|
@ -15,6 +15,7 @@ export const COMMENT_FIELDS = gql`
|
||||||
boost
|
boost
|
||||||
meSats
|
meSats
|
||||||
path
|
path
|
||||||
|
commentSats
|
||||||
mine
|
mine
|
||||||
paidImgLink
|
paidImgLink
|
||||||
ncomments
|
ncomments
|
||||||
|
|
Loading…
Reference in New Issue