chore: remove ESC to close edit (#726)

This commit is contained in:
boojack
2022-12-11 14:18:04 +08:00
committed by GitHub
parent c3adb1b152
commit 564f20d13a

View File

@ -141,8 +141,6 @@ const MemoEditor = () => {
if (event.key === "Escape") { if (event.key === "Escape") {
if (state.fullscreen) { if (state.fullscreen) {
handleFullscreenBtnClick(); handleFullscreenBtnClick();
} else if (editorState.editMemoId) {
handleCancelEdit();
} }
return; return;
} }
@ -364,7 +362,7 @@ const MemoEditor = () => {
}; };
const handleEditorBlur = () => { const handleEditorBlur = () => {
// do nth // do nothing
}; };
const isEditing = Boolean(editorState.editMemoId && editorState.editMemoId !== UNKNOWN_ID); const isEditing = Boolean(editorState.editMemoId && editorState.editMemoId !== UNKNOWN_ID);