Fix ID's not being made unique when copying components

This commit is contained in:
Andrew Kingston 2021-02-04 18:00:16 +00:00
parent e94fb7d937
commit adb22dee69
1 changed files with 8 additions and 1 deletions

View File

@ -416,7 +416,14 @@ export const getFrontendStore = () => {
if (cut) {
state.componentToPaste = null
} else {
componentToPaste._id = uuid()
const randomizeIds = component => {
if (!component) {
return
}
component._id = uuid()
component.children?.forEach(randomizeIds)
}
randomizeIds(componentToPaste)
}
if (mode === "inside") {