fix: revert mapElementIds flag removal (#7594)

This commit is contained in:
David Luzar
2024-01-22 17:23:00 +01:00
committed by GitHub
parent c6fdac131b
commit 89bd6181f2

View File

@ -66,7 +66,7 @@ const __createSceneForElementsHack__ = (
// ids to Scene instances so that we don't override the editor elements
// mapping.
// We still need to clone the objects themselves to regen references.
scene.replaceAllElements(cloneJSON(elements));
scene.replaceAllElements(cloneJSON(elements), false);
return scene;
};