Fix missing metrics in post threads
parent
7f8f53b087
commit
e5e31e5fe2
|
@ -307,6 +307,9 @@ export const PostThreadItem = observer(function PostThreadItem({
|
||||||
itemHref={itemHref}
|
itemHref={itemHref}
|
||||||
itemTitle={itemTitle}
|
itemTitle={itemTitle}
|
||||||
isAuthor={item.post.author.did === store.me.did}
|
isAuthor={item.post.author.did === store.me.did}
|
||||||
|
replyCount={item.post.replyCount}
|
||||||
|
repostCount={item.post.repostCount}
|
||||||
|
upvoteCount={item.post.upvoteCount}
|
||||||
isReposted={!!item.post.viewer.repost}
|
isReposted={!!item.post.viewer.repost}
|
||||||
isUpvoted={!!item.post.viewer.upvote}
|
isUpvoted={!!item.post.viewer.upvote}
|
||||||
onPressReply={onPressReply}
|
onPressReply={onPressReply}
|
||||||
|
|
Loading…
Reference in New Issue