From 50770e3156a5f9cbb9dd64fd058c8e54bda1d7a2 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Wed, 27 Dec 2023 20:58:21 +0800 Subject: [PATCH] :art: Database table view primary key column cell support `[[` bind to a block https://github.com/siyuan-note/siyuan/issues/9983 --- app/src/protyle/render/av/cell.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/src/protyle/render/av/cell.ts b/app/src/protyle/render/av/cell.ts index 8a202d663..8ee26d1f9 100644 --- a/app/src/protyle/render/av/cell.ts +++ b/app/src/protyle/render/av/cell.ts @@ -321,9 +321,6 @@ export const popTextCell = (protyle: IProtyle, cellElements: HTMLElement[], type } if (type === "block") { inputElement.addEventListener("input", (event: InputEvent) => { - if (event.isComposing) { - return; - } if (Constants.BLOCK_HINT_KEYS.includes(inputElement.value.substring(0, 2))) { protyle.toolbar.range = document.createRange(); protyle.toolbar.range.selectNodeContents(cellElements[0].lastChild);