diff --git a/frontend/src/components/input/editor/TipTap.vue b/frontend/src/components/input/editor/TipTap.vue index 54dfcf2dfd..3c14310640 100644 --- a/frontend/src/components/input/editor/TipTap.vue +++ b/frontend/src/components/input/editor/TipTap.vue @@ -338,12 +338,14 @@ const editor = useEditor({ HardBreak.extend({ addKeyboardShortcuts() { return { + 'Shift-Enter': () => this.editor.commands.setHardBreak(), 'Mod-Enter': () => { if (contentHasChanged.value) { bubbleSave() } + return true }, - } + } }, }), Heading,