Explorar o código

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

Vanessa %!s(int64=2) %!d(string=hai) anos
pai
achega
c722f6d003
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      app/src/protyle/wysiwyg/index.ts

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

@@ -1076,8 +1076,9 @@ export class WYSIWYG {
                             if (parentElement) {
                                 // 引用文本剪切 https://ld246.com/article/1647689760545
                                 // 表格多行剪切 https://ld246.com/article/1652603836350
+                                // 自定义表情的段落剪切后表情丢失 https://ld246.com/article/1668781478724
                                 Array.from(parentElement.children).forEach(item => {
-                                    if (item.textContent === "" && (item.nodeType === 1 && item.tagName !== "BR")) {
+                                    if (item.textContent === "" && (item.nodeType === 1 && !["BR", "IMG"].includes(item.tagName))) {
                                         item.remove();
                                     }
                                 });