chore(utils): remove logs
This commit is contained in:
@@ -94,7 +94,6 @@ function ResizeControl({
|
|||||||
),
|
),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
console.log(child);
|
|
||||||
|
|
||||||
const parentExpandChanges = handleExpandParent([child], nodeLookup, parentLookup, nodeOrigin);
|
const parentExpandChanges = handleExpandParent([child], nodeLookup, parentLookup, nodeOrigin);
|
||||||
changes.push(...parentExpandChanges);
|
changes.push(...parentExpandChanges);
|
||||||
|
|||||||
@@ -159,7 +159,7 @@ export function handleExpandParent(
|
|||||||
): (NodeDimensionChange | NodePositionChange)[] {
|
): (NodeDimensionChange | NodePositionChange)[] {
|
||||||
const changes: (NodeDimensionChange | NodePositionChange)[] = [];
|
const changes: (NodeDimensionChange | NodePositionChange)[] = [];
|
||||||
const parentExpansions = new Map<string, { expandedRect: Rect; parent: InternalNodeBase }>();
|
const parentExpansions = new Map<string, { expandedRect: Rect; parent: InternalNodeBase }>();
|
||||||
console.log(children)
|
|
||||||
// determine the expanded rectangle the child nodes would take for each parent
|
// determine the expanded rectangle the child nodes would take for each parent
|
||||||
for (const child of children) {
|
for (const child of children) {
|
||||||
const parent = nodeLookup.get(child.parentId);
|
const parent = nodeLookup.get(child.parentId);
|
||||||
|
|||||||
Reference in New Issue
Block a user