File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ export class TreeComponent implements OnChanges {
9797 @Output ( ) updateData ;
9898 @Output ( ) initialized ;
9999 @Output ( ) moveNode ;
100- @Output ( ) loadChildrenTree ;
100+ @Output ( ) loadNodeChildren ;
101101 @Output ( ) changeFilter ;
102102 @Output ( ) event ;
103103
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export const TREE_EVENTS = {
2020 updateData : 'updateData' ,
2121 moveNode : 'moveNode' ,
2222 event : 'event' ,
23- loadChildrenTree : 'loadChildrenTree ' ,
23+ loadNodeChildren : 'loadNodeChildren ' ,
2424 changeFilter : 'changeFilterr'
2525} ;
2626
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ export class TreeNode implements ITreeNode {
172172
173173
174174 // helper methods:
175- loadChildrenTree ( ) {
175+ loadNodeChildren ( ) {
176176 if ( ! this . options . getChildren ) {
177177 return Promise . resolve ( ) ; // Not getChildren method - for using redux
178178 }
@@ -244,7 +244,7 @@ export class TreeNode implements ITreeNode {
244244 this . treeModel . setExpandedNode ( this , value ) ;
245245
246246 if ( ! this . children && this . hasChildren && value ) {
247- return this . loadChildrenTree ( ) ;
247+ return this . loadNodeChildren ( ) ;
248248 }
249249 }
250250
You can’t perform that action at this time.
0 commit comments