fix: delete data if top-level data is selected
All checks were successful
Build and Deploy Angular App / build (push) Successful in 2m3s

This commit is contained in:
2024-09-30 04:55:33 +03:00
parent 6211dd8889
commit 380b2efa0d
9 changed files with 196 additions and 112 deletions

View File

@ -3,17 +3,17 @@
(selectedTabChange)="chooseTabs($event.index)">
<mat-tab label="Группа">
<div>
<app-group #groupTab (eventResult)="groupSelected($event)"/>
<app-group #groupTab/>
</div>
</mat-tab>
<mat-tab label="Преподаватель">
<div>
<app-professor #professorTab (eventResult)="professorSelected($event)"/>
<app-professor #professorTab/>
</div>
</mat-tab>
<mat-tab label="Кабинет">
<div>
<app-lecture-hall #lectureHallTab (eventResult)="lectureHallSelected($event)"/>
<app-lecture-hall #lectureHallTab/>
</div>
</mat-tab>