From 96ee24a5c876e3c8de89616b441113fd235fbf1f Mon Sep 17 00:00:00 2001 From: ausbitbank Date: Sat, 12 Oct 2019 21:24:38 +1000 Subject: [PATCH] Typo: vote_perecent to vote_percent --- src/utils/postParser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;