diff --git a/app/scenes/Document/components/Editor.js b/app/scenes/Document/components/Editor.js index c05237b91..34f07c276 100644 --- a/app/scenes/Document/components/Editor.js +++ b/app/scenes/Document/components/Editor.js @@ -50,7 +50,7 @@ class DocumentEditor extends React.Component { }; handleTitleKeyDown = (event: SyntheticKeyboardEvent<>) => { - if (event.key === "Enter") { + if (event.key === "Enter" && !event.metaKey) { event.preventDefault(); this.insertParagraph(); this.focusAtStart();