Browse Source

Allow pasting multiple times after copying when not cutting

pull/6733/head
Andrew Kingston 4 years ago
parent
commit
be76f9ebfb
  1. 6
      packages/builder/src/builderStore/store/frontend.js

6
packages/builder/src/builderStore/store/frontend.js

@ -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
})

Loading…
Cancel
Save