@ecodev/natural 65.0.4 → 65.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8315,13 +8315,13 @@ class NaturalHierarchicSelectorComponent {
|
|
|
8315
8315
|
* Get list of children, considering given FlatNode id as a parent.
|
|
8316
8316
|
* Mark loading status individually on nodes.
|
|
8317
8317
|
*/
|
|
8318
|
-
loadChildren(node
|
|
8318
|
+
loadChildren(node) {
|
|
8319
8319
|
if (node.hasChildren) {
|
|
8320
8320
|
return;
|
|
8321
8321
|
}
|
|
8322
8322
|
node.isLoading = true;
|
|
8323
8323
|
this.hierarchicSelectorService
|
|
8324
|
-
.getList(node,
|
|
8324
|
+
.getList(node, this.filters(), null, this.config())
|
|
8325
8325
|
.pipe(finalize$1(() => (node.isLoading = false)))
|
|
8326
8326
|
.subscribe(items => node.childrenChange.next(items));
|
|
8327
8327
|
}
|