diff --git a/src/App.vue b/src/App.vue index be64b89..1ae3b0f 100644 --- a/src/App.vue +++ b/src/App.vue @@ -433,7 +433,7 @@ export default { } }, download() { - const nodesWithPositions = graph.nodes.map((n, i) => ({ + const nodesWithPositions = graph.nodes.map(({adj, ...n}, i) => ({ ...n, ...positions[i], }));