From f8a6a4b840a490c79f827520a6dbdfeea99eaebf Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Wed, 29 Mar 2023 20:47:21 -0400 Subject: [PATCH] fix: Comment button does not appear immediately on focus of document comment input closes #5118 --- app/editor/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/editor/index.tsx b/app/editor/index.tsx index 8fd429994..4bf2cafb1 100644 --- a/app/editor/index.tsx +++ b/app/editor/index.tsx @@ -183,7 +183,7 @@ export class Editor extends React.PureComponent< mentionMenuOpen: false, }; - isBlurred: boolean; + isBlurred = true; extensions: ExtensionManager; elementRef = React.createRef(); wrapperRef = React.createRef();