Skip to content

Commit b58e4d4

Browse files
committed
Add missing property
1 parent b45cede commit b58e4d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/logics/graphImpl/cytoImpl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ export function applyLayout(name: string) {
300300
export function getNodePositions() {
301301
layout?.stop()
302302
store.dispatch(setIsPhysicsEnabled(false))
303-
let positions: Record<string, { node_id: string, name: string, x: number, y: number}> = {};
303+
let positions: Record<string, { node_id: string, name: string, object_handle: string, x: number, y: number}> = {};
304304
let nodemaps: Record<string, { name: string, layout_id:string }> = {};
305305

306306
graph?.nodes().forEach(node => {

0 commit comments

Comments
 (0)