diff --git a/src/utils/postParser.js b/src/utils/postParser.js index bca6cf36a..6f43f8bf1 100644 --- a/src/utils/postParser.js +++ b/src/utils/postParser.js @@ -165,7 +165,7 @@ const parseActiveVotes = (post, currentUserName) => { if (!isEmpty(post.active_votes)) { forEach(post.active_votes, value => { - post.vote_perecent = value.voter === currentUserName ? value.percent : null; + post.vote_percent = value.voter === currentUserName ? value.percent : null; value.value = (value.rshares * ratio).toFixed(3); value.reputation = getReputation(get(value, 'reputation')); value.percent /= 100;