i using Tree component with lazy-load, everything looks good, but in case a node does not have any children and result is empty, the loading icon does not disappear, So I did something wrong or this is an issue of component ?
onNodeExpand(event){
let node = event;
if (!node.children) {
this.dataService.getNodes(node).subscribe((data) => node.children = data);
// data = [] when this node doesn't have any child
}
}