fix: increase editor Dagre nodesep to 100, align ranksep with TreeFlow

This commit is contained in:
2026-06-14 19:49:52 +08:00
parent 5cf0461e55
commit 681efe1d92

View File

@@ -21,8 +21,8 @@ export function computePositions(
const g = new dagre.graphlib.Graph()
g.setGraph({
rankdir: 'LR',
nodesep: 50,
ranksep: 240,
nodesep: 100,
ranksep: 200,
marginx: 60,
marginy: 60,
})