fix(editor): update element.frameId on frame change (#11490)

Co-authored-by: Diego Mateos <dimateos@ucm.es>
This commit is contained in:
David Luzar
2026-06-13 22:39:04 +02:00
committed by GitHub
co-authored by Diego Mateos
parent b324a85ab1
commit 069982606d
2 changed files with 28 additions and 4 deletions
-4
View File
@@ -569,10 +569,6 @@ export const addElementsToFrame = <T extends ElementsMapOrArray>(
continue;
}
if (element.frameId && element.frameId !== frame.id) {
continue;
}
finalElementsToAdd.add(element);
const boundTextElement = getBoundTextElement(element, elementsMap);