Allow pasting multiple times after copying when not cutting

This commit is contained in:
Andrew Kingston 2022-07-15 10:00:19 +01:00
parent b82c57fac8
commit be76f9ebfb
1 changed files with 4 additions and 2 deletions

View File

@ -642,9 +642,11 @@ export const getFrontendStore = () => {
}
})
// Update state
store.update(state => {
delete state.componentToPaste
// Remove copied component if cutting
if (state.componentToPaste.isCut) {
delete state.componentToPaste
}
state.selectedComponentId = newComponentId
return state
})