diff --git a/src/js/module/Editor.js b/src/js/module/Editor.js index 3fa983aab..292f14d1d 100644 --- a/src/js/module/Editor.js +++ b/src/js/module/Editor.js @@ -466,6 +466,9 @@ export default class Editor { if (this.context.invoke(eventName) !== false) { event.preventDefault(); // if keyMap action was invoked + if (keyName != 'ENTER') { // <--- Without this check, we get double Empty Paragraph insertion. + this.context.invoke(eventName); + } return true; } } else if (key.isEdit(event.keyCode)) {