Vanessa 2025-12-19 20:32:00 +08:00
parent bc238a245f
commit 287339c66c

View file

@ -60,7 +60,7 @@ const moveTo = async (protyle: IProtyle, sourceElements: Element[], targetElemen
for (let index = sourceElements.length - 1; index >= 0; index--) {
const item = sourceElements[index];
const id = item.getAttribute("data-node-id");
const parentID = item.parentElement.getAttribute("data-node-id") || protyle.block.parentID || protyle.block.rootID;
const parentID = getParentBlock(item).getAttribute("data-node-id") || protyle.block.parentID || protyle.block.rootID;
if (item.getAttribute("data-type") === "NodeListItem" && !newListId && !isSameLi) {
newListId = Lute.NewNodeID();
newListElement = document.createElement("div");