fix input treeSelect

This commit is contained in:
Çetin
2021-12-22 16:15:15 +03:00
parent 6b24f8fcbe
commit 812ab447ab
4 changed files with 2 additions and 62 deletions

View File

@@ -31,10 +31,4 @@ export class NodeService {
.toPromise()
.then(res => res.data as TreeNode[]);
}
getTreeNodes(){
return this.http.get<any>('assets/demo/data/treenodes.json')
.toPromise()
.then(res => res.data as TreeNode[]);
}
}