Vanessa 2025-06-30 14:40:55 +08:00
parent 60d44fec3d
commit 3f65251dfe

View file

@ -622,6 +622,14 @@ export const onTransaction = (protyle: IProtyle, operation: IOperation, isUndo:
}
});
if (data["data-av-type"]) {
// https://github.com/siyuan-note/siyuan/pull/15178#discussion_r2173842215
const oldAvType = item.getAttribute("data-av-type");
const containerElement = item.querySelector(".av__container") as HTMLElement;
if (containerElement && data["data-av-type"] === "table" && oldAvType === "gallery") {
containerElement.style.overflow = "inherit";
} else if (containerElement && data["data-av-type"] === "gallery" && oldAvType === "table") {
containerElement.style.overflow = "";
}
item.setAttribute("data-av-type", data["data-av-type"]);
}
const attrElements = item.querySelectorAll(".protyle-attr");