From d1729e51155c2796c7c1c6f746f89fe10d1db221 Mon Sep 17 00:00:00 2001 From: Riley Davis Date: Thu, 20 Apr 2017 12:44:25 -0600 Subject: [PATCH] camel_case --- client/coral-embed-stream/src/Comment.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/coral-embed-stream/src/Comment.js b/client/coral-embed-stream/src/Comment.js index 01b038a8b..51402e490 100644 --- a/client/coral-embed-stream/src/Comment.js +++ b/client/coral-embed-stream/src/Comment.js @@ -125,12 +125,12 @@ class Comment extends React.Component { const likeSummary = getActionSummary('LikeActionSummary', comment); const flagSummary = getActionSummary('FlagActionSummary', comment); - const dontagreeSummary = getActionSummary('DontAgreeActionSummary', comment); + const dontAgreeSummary = getActionSummary('DontAgreeActionSummary', comment); let myFlag = null; if (iPerformedThisAction('FlagActionSummary', comment)) { myFlag = flagSummary.find(s => s.current_user); } else if (iPerformedThisAction('DontAgreeActionSummary', comment)) { - myFlag = dontagreeSummary.find(s => s.current_user); + myFlag = dontAgreeSummary.find(s => s.current_user); } let commentClass = parentId ? `reply ${styles.Reply}` : `comment ${styles.Comment}`;