defaults to empty object when no canvas clipboard data is stored in localstorage (#28781) (#28794)

This commit is contained in:
Catherine Liu 2019-01-15 17:12:04 -07:00 committed by GitHub
parent dffdb7a714
commit c212ab51ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -151,7 +151,7 @@ export const WorkpadPage = compose(
}
},
pasteElements: () => {
const { selectedElements, rootShapes } = JSON.parse(getClipboardData());
const { selectedElements, rootShapes } = JSON.parse(getClipboardData()) || {};
const clonedElements = selectedElements && cloneSubgraphs(selectedElements);
if (clonedElements) {
// first clone and persist the new node(s)