Vanessa 2025-11-20 23:21:43 +08:00
parent 7ac61fd9c1
commit 31b98aaaa0

View file

@ -276,7 +276,7 @@ export const breakList = (protyle: IProtyle, blockElement: Element, range: Range
action: "delete" action: "delete"
}); });
Array.from(listItemElement.children).reverse().forEach((item) => { Array.from(listItemElement.children).reverse().forEach((item, index) => {
if (!item.classList.contains("protyle-action") && !item.classList.contains("protyle-attr")) { if (!item.classList.contains("protyle-action") && !item.classList.contains("protyle-attr")) {
doOperations.push({ doOperations.push({
id: item.getAttribute("data-node-id"), id: item.getAttribute("data-node-id"),
@ -286,7 +286,8 @@ export const breakList = (protyle: IProtyle, blockElement: Element, range: Range
undoOperations.push({ undoOperations.push({
id: item.getAttribute("data-node-id"), id: item.getAttribute("data-node-id"),
action: "move", action: "move",
parentID: listItemId parentID: listItemId,
data: index === listItemElement.childElementCount - 2 ? "focus" : null
}); });
listItemElement.parentElement.after(item); listItemElement.parentElement.after(item);
} }