From efda0fb161e3f32b220d1396a216c25c5b47d7df Mon Sep 17 00:00:00 2001 From: Vanessa Date: Wed, 16 Apr 2025 18:55:57 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/14621 --- app/src/protyle/util/selection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/protyle/util/selection.ts b/app/src/protyle/util/selection.ts index e6dcbaca3..75c056e9a 100644 --- a/app/src/protyle/util/selection.ts +++ b/app/src/protyle/util/selection.ts @@ -644,7 +644,7 @@ export const focusBlock = (element: Element, parentElement?: HTMLElement, toStar } else { let focusHljs = false; // 定位到末尾 https://github.com/siyuan-note/siyuan/issues/5982 - if (cursorElement.classList.contains("hljs")) { + if (cursorElement.parentElement.classList.contains("hljs")) { // 代码块末尾定位需在 /n 之前 https://github.com/siyuan-note/siyuan/issues/9141,https://github.com/siyuan-note/siyuan/issues/9189 let lastNode = cursorElement.lastChild; if (!lastNode) {