Skip to content

Commit 6532b5d

Browse files
committed
refactor: fixing formatting
1 parent e86cd8d commit 6532b5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/observability/src/shared/components/topology/d3/layouts/custom-tree-layout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ export class CustomTreeLayout extends TreeLayout {
2828
this.updateLayout(node, nodeRowIndex + index, nodeColumnIndex + 1, cellWidth, cellHeight);
2929
});
3030

31-
return (hierarchyNode.children?.length ?? 1);
31+
return hierarchyNode.children?.length ?? 1;
3232
}
3333
}

0 commit comments

Comments
 (0)