From 44fd8349a7b07ecc1cf42dff7be06c104789c65d Mon Sep 17 00:00:00 2001 From: jessopb <36554050+jessopb@users.noreply.github.com> Date: Thu, 23 Dec 2021 11:31:20 -0500 Subject: [PATCH] fix comment replies (#7367) --- ui/component/commentCreate/view.jsx | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/ui/component/commentCreate/view.jsx b/ui/component/commentCreate/view.jsx index d1108cd0e..2ef7f36ad 100644 --- a/ui/component/commentCreate/view.jsx +++ b/ui/component/commentCreate/view.jsx @@ -164,7 +164,7 @@ export function CommentCreate(props: Props) { function handleCommentChange(event) { let commentValue; if (isReply) { - commentValue = event.target.value; + commentValue = advancedEditor ? event : event.target.value; } else { commentValue = advancedEditor ? event : event.target.value; } @@ -596,20 +596,6 @@ export function CommentCreate(props: Props) { setActiveTab(TAB_LBC); }} /> - {/* @if TARGET='web' */} - {stripeEnvironment && ( -