From f628ac35f86bfabb22072327b425b851a8ec241d Mon Sep 17 00:00:00 2001 From: Vanessa Date: Mon, 29 Aug 2022 00:03:45 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/5718 --- app/src/protyle/util/table.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/protyle/util/table.ts b/app/src/protyle/util/table.ts index 07ae46cbf..9546620a2 100644 --- a/app/src/protyle/util/table.ts +++ b/app/src/protyle/util/table.ts @@ -548,6 +548,7 @@ export const fixTable = (protyle: IProtyle, event: KeyboardEvent, range: Range) if (matchHotKey(window.siyuan.config.keymap.editor.table.insertRowAbove.custom, event)) { insertRowAbove(protyle, range, cellElement, nodeElement); event.preventDefault(); + event.stopPropagation(); return true; }