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 {
97
97
@Output ( ) updateData ;
98
98
@Output ( ) initialized ;
99
99
@Output ( ) moveNode ;
100
- @Output ( ) loadChildrenTree ;
100
+ @Output ( ) loadNodeChildren ;
101
101
@Output ( ) changeFilter ;
102
102
@Output ( ) event ;
103
103
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export const TREE_EVENTS = {
20
20
updateData : 'updateData' ,
21
21
moveNode : 'moveNode' ,
22
22
event : 'event' ,
23
- loadChildrenTree : 'loadChildrenTree ' ,
23
+ loadNodeChildren : 'loadNodeChildren ' ,
24
24
changeFilter : 'changeFilterr'
25
25
} ;
26
26
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ export class TreeNode implements ITreeNode {
172
172
173
173
174
174
// helper methods:
175
- loadChildrenTree ( ) {
175
+ loadNodeChildren ( ) {
176
176
if ( ! this . options . getChildren ) {
177
177
return Promise . resolve ( ) ; // Not getChildren method - for using redux
178
178
}
@@ -244,7 +244,7 @@ export class TreeNode implements ITreeNode {
244
244
this . treeModel . setExpandedNode ( this , value ) ;
245
245
246
246
if ( ! this . children && this . hasChildren && value ) {
247
- return this . loadChildrenTree ( ) ;
247
+ return this . loadNodeChildren ( ) ;
248
248
}
249
249
}
250
250
You can’t perform that action at this time.
0 commit comments