Enhance Reset method in MeetingSchedule component to include extended teams

This commit updates the Reset method in the Index.razor component of the MeetingSchedule feature to initialize and save both scheduled and extended teams. By ensuring that both team types are reset and saved, the functionality of the scheduling system is improved, contributing to a more reliable and comprehensive team management experience.
This commit is contained in:
2026-01-13 10:19:05 -05:00
parent aba8ea3ae3
commit c505bf42dd
@@ -179,7 +179,9 @@
private async void Reset()
{
_scheduledTeams = [];
_extendedTeams = [];
await SaveScheduledTeams();
await SaveExtendedTeams();
}
private async void ToggleRequiredTeam(Team unassignedTeam)