Prechádzať zdrojové kódy

:bug: fix https://github.com/siyuan-note/siyuan/issues/4911

Vanessa 3 rokov pred
rodič
commit
e35ab0db64
1 zmenil súbory, kde vykonal 3 pridanie a 1 odobranie
  1. 3 1
      app/src/protyle/wysiwyg/index.ts

+ 3 - 1
app/src/protyle/wysiwyg/index.ts

@@ -373,8 +373,10 @@ export class WYSIWYG {
                                 parentElement = getContenteditableElement(nodeElement);
                             }
                             if (parentElement) {
+                                // 引用文本剪切 https://ld246.com/article/1647689760545
+                                // 表格多行剪切 https://ld246.com/article/1652603836350
                                 Array.from(parentElement.children).forEach(item => {
-                                    if (item.textContent === "") {
+                                    if (item.textContent === "" && (item.nodeType === 1 && item.tagName !== "BR")) {
                                         item.remove();
                                     }
                                 });