From e16aa1fc04ef154e97ea54ddb0f36e2185f38a92 Mon Sep 17 00:00:00 2001 From: Hans Date: Sun, 9 Jul 2023 23:16:25 +0700 Subject: [PATCH] Fix: Compose box is stuck with non removable space if we add space, click on upper arrow to edit and save edited message --- src/pages/home/report/ReportActionCompose.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/home/report/ReportActionCompose.js b/src/pages/home/report/ReportActionCompose.js index d4e35c31c6b6..12607a0835fe 100644 --- a/src/pages/home/report/ReportActionCompose.js +++ b/src/pages/home/report/ReportActionCompose.js @@ -841,7 +841,7 @@ class ReportActionCompose extends React.Component { if ( e.key === CONST.KEYBOARD_SHORTCUTS.ARROW_UP.shortcutKey && this.textInput.selectionStart === 0 && - this.state.isCommentEmpty && + this.state.value.length === 0 && !ReportUtils.chatIncludesChronos(this.props.report) ) { e.preventDefault();