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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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