Merge pull request #740 from esteemapp/bugfix/commentVote

fixed wrong vote count
This commit is contained in:
Mustafa Buyukcelebi 2019-04-07 14:16:57 +03:00 committed by GitHub
commit 21425f74dc

View File

@ -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}