ensure duplicateElement does deep copy of points (#742)
This commit is contained in:
parent
389e40900c
commit
2a472bb912
@ -63,7 +63,10 @@ export function newTextElement(
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function duplicateElement(element: ReturnType<typeof newElement>) {
|
export function duplicateElement(element: ReturnType<typeof newElement>) {
|
||||||
const copy = { ...element };
|
const copy = {
|
||||||
|
...element,
|
||||||
|
points: JSON.parse(JSON.stringify(element.points)),
|
||||||
|
};
|
||||||
delete copy.shape;
|
delete copy.shape;
|
||||||
copy.id = nanoid();
|
copy.id = nanoid();
|
||||||
copy.seed = randomSeed();
|
copy.seed = randomSeed();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user