From b93945faf91129dc8a8ab1180e6aa1d80109e9b9 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Thu, 2 Feb 2023 15:48:24 +0800 Subject: [PATCH] :art: fix https://github.com/siyuan-note/siyuan/issues/7236 --- 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 bb1578b8b..00c218300 100644 --- a/app/src/protyle/util/table.ts +++ b/app/src/protyle/util/table.ts @@ -687,6 +687,7 @@ export const fixTable = (protyle: IProtyle, event: KeyboardEvent, range: Range) deleteRow(protyle, range, cellElement, nodeElement); } event.preventDefault(); + event.stopPropagation(); return true; }