From c722f6d00303fdaf50e15a069c1cd97efcf8a7c5 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Sun, 20 Nov 2022 00:21:51 +0800 Subject: [PATCH] :bug: fix https://github.com/siyuan-note/siyuan/issues/6652 --- app/src/protyle/wysiwyg/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/protyle/wysiwyg/index.ts b/app/src/protyle/wysiwyg/index.ts index af039c012..92e4da4cd 100644 --- a/app/src/protyle/wysiwyg/index.ts +++ b/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(); } });