From 9ad98f735364ee1c9a34dd108dd3a323d4da4e1f Mon Sep 17 00:00:00 2001 From: Vanessa Date: Fri, 30 Jun 2023 17:05:54 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/7536 --- app/src/protyle/render/av/cell.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/protyle/render/av/cell.ts b/app/src/protyle/render/av/cell.ts index 92c587e8b..ec887f68b 100644 --- a/app/src/protyle/render/av/cell.ts +++ b/app/src/protyle/render/av/cell.ts @@ -17,6 +17,7 @@ export const popTextCell = (protyle: IProtyle, cellElement: HTMLElement) => { const inputElement = avMaskElement.querySelector(".b3-text-field") as HTMLInputElement; if (inputElement) { inputElement.select(); + inputElement.focus(); inputElement.addEventListener("blur", () => { updateCellValue(protyle, cellElement, type); });