diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-16 16:22:24 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-16 16:22:24 -0600 |
commit | e5e31e5fe21872649ef174a3262da3c0f8431ccd (patch) | |
tree | 4bec2e19ee35001fc32c674488c5d1ec06b702d8 /src | |
parent | 7f8f53b08753adbc4f6ffdd3a61ec3a6bd3a4899 (diff) | |
download | voidsky-e5e31e5fe21872649ef174a3262da3c0f8431ccd.tar.zst |
Fix missing metrics in post threads
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index d1fb44086..ec05f320f 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -307,6 +307,9 @@ export const PostThreadItem = observer(function PostThreadItem({ itemHref={itemHref} itemTitle={itemTitle} 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} isUpvoted={!!item.post.viewer.upvote} onPressReply={onPressReply} |