From 26a8c5e4ab318883e6231136af7ab1292c8daeb6 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Mon, 8 May 2023 22:37:24 -0400 Subject: [PATCH] fix: Revert #5278 --- app/scenes/Document/components/CommentThread.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/scenes/Document/components/CommentThread.tsx b/app/scenes/Document/components/CommentThread.tsx index 82bb744e0..21b28ab1d 100644 --- a/app/scenes/Document/components/CommentThread.tsx +++ b/app/scenes/Document/components/CommentThread.tsx @@ -143,7 +143,7 @@ function CommentThread({ $focused={focused} $recessed={recessed} $dir={document.dir} - onPointerUp={handleClickThread} + onClick={handleClickThread} > {commentsInThread.map((comment, index) => { const firstOfAuthor = @@ -192,7 +192,7 @@ function CommentThread({ )} {!focused && !recessed && can.comment && ( - setAutoFocus(true)}>{t("Reply")}… + setAutoFocus(true)}>{t("Reply")}… )} );