mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
chore: remove ESC to close edit (#726)
This commit is contained in:
@ -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);
|
||||||
|
Reference in New Issue
Block a user