Skip to content

Commit

Permalink
fix(graph): Remove console.log() statement (patternfly#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
lordrip authored and jeff-phillips-18 committed Oct 25, 2024
1 parent eb4bf73 commit 970574f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/module/src/elements/BaseGraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,6 @@ export default class BaseGraph<E extends GraphModel = GraphModel, D = any>
}

setAllChildrenCollapsedState(parent: Node, collapsed: boolean): void {
// eslint-disable-next-line no-console
console.log(parent.getAllNodeChildren(false));
parent.getAllNodeChildren(false).forEach((node) => {
if (node.isGroup()) {
node.setCollapsed(collapsed);
Expand Down

0 comments on commit 970574f

Please sign in to comment.