Kaynağa Gözat

:art: fix https://github.com/siyuan-note/siyuan/issues/11175

Vanessa 1 yıl önce
ebeveyn
işleme
c79e2f79f5
1 değiştirilmiş dosya ile 3 ekleme ve 1 silme
  1. 3 1
      app/src/util/highlightById.ts

+ 3 - 1
app/src/util/highlightById.ts

@@ -62,7 +62,9 @@ export const scrollCenter = (protyle: IProtyle, nodeElement?: Element, top = fal
         }
     }
 
-    if (!nodeElement) {
+    if (!nodeElement &&
+        // https://github.com/siyuan-note/siyuan/issues/11175
+        document.activeElement?.tagName !== "TEXTAREA" && document.activeElement?.tagName !== "INPUT") {
         nodeElement = hasClosestBlock(getEditorRange(protyle.wysiwyg.element).startContainer) as HTMLElement;
     }
     if (!nodeElement) {