refactor(subgraphs): calculate z for child nodes

This commit is contained in:
moklick
2021-11-18 17:57:45 +01:00
parent fe9c1f02dc
commit 7ffad7770b
5 changed files with 16 additions and 25 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ export type NodeDimensionUpdate = {
export type NodeInternalsItem = Node & {
positionAbsolute?: XYPosition;
handleBounds?: NodeHandleBounds;
z?: number;
z: number;
isParent?: boolean;
};