Can build ascending tree

This commit is contained in:
2023-08-23 10:58:25 +02:00
parent f4c226ac98
commit 89471ba16d
2 changed files with 70 additions and 26 deletions

View File

@ -122,7 +122,10 @@ export function FamilyMemberTreeRoute(): React.ReactElement {
{currTab === CurrTab.BasicTree ? (
<BasicFamilyTree tree={tree!} />
) : (
<ComplexFamilyTree tree={tree!} />
<ComplexFamilyTree
tree={tree!}
isUp={currMode === TreeMode.Ascending}
/>
)}
</Paper>
</div>