You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(cdk/tree): resolve maximum call stack error (angular#29754)
The CDK tree was calling `ChangeDetectorRef.detectChanges` recursively for each node in the tree which was overflowing the call stack with some larger trees.
These changes resolve the issue by only calling `detectChanges` on the root.
Fixesangular#29733.
0 commit comments