Skip to content

Commit fcc378a

Browse files
committed
fix(cdk/tree): restoring incorrectly removed code
1 parent e5c20d1 commit fcc378a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cdk/tree/nested-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export class CdkNestedTreeNode<T, K = T>
9595
}
9696
if (outlet && this._children) {
9797
const viewContainer = outlet.viewContainer;
98-
this._tree.renderNodeChanges(this._children, this._dataDiffer, viewContainer, this._data);
98+
this._tree._renderNodeChanges(this._children, this._dataDiffer, viewContainer, this._data);
9999
} else {
100100
// Reset the data differ if there's no children nodes displayed
101101
this._dataDiffer.diff([]);

0 commit comments

Comments
 (0)