В вашем классе ChecklistDatabase
измените метод insertItem()
с .push
на .splice
/** Add an item to to-do list */
insertItem(parent: TodoItemNode, name: string) {
if (parent.children) {
//parent.children.push({item: name} as TodoItemNode);
parent.children.splice(0,0,{item: name} as TodoItemNode);
this.dataChange.next(this.data);
}
}
Stackblitz
https://stackblitz.com/edit/angular-ifr2tc?embed=1&file=app/tree-checklist-example.ts