From 8949b03988321b9b3750db983697d488643c5bbc Mon Sep 17 00:00:00 2001 From: u-e Date: Thu, 4 Apr 2019 19:19:53 +0300 Subject: [PATCH] fixed wrong vote count --- src/components/comments/view/commentsView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/comments/view/commentsView.js b/src/components/comments/view/commentsView.js index 7b89e86d3..6b1972200 100644 --- a/src/components/comments/view/commentsView.js +++ b/src/components/comments/view/commentsView.js @@ -57,7 +57,7 @@ class CommentsView extends PureComponent { handleOnUserPress={handleOnUserPress} isLoggedIn={isLoggedIn} isShowMoreButton={commentNumber === 1 && item.children > 0} - voteCount={item.vote_count} + voteCount={item.net_votes} isShowSubComments={isShowSubComments} key={item.permlink} marginLeft={marginLeft}