Compare commits

..

2 Commits

Author SHA1 Message Date
John Montagu, the 4th Earl of Sandvich da79731868
Merge branch 'master' of github.com:HumanoidSandvichDispenser/availabili.tf 2025-09-24 13:39:49 -07:00
LegitimateWizard f70e6e994f
Update EventSchedulerForm.vue (#30)
Set the team reference. Fixes #16

---------

Co-authored-by: HumanoidSandvichDispenser <25856867+HumanoidSandvichDispenser@users.noreply.github.com>
2025-07-05 17:26:23 -07:00
1 changed files with 4 additions and 1 deletions

View File

@ -62,7 +62,10 @@ onMounted(() => {
if (eventId.value) {
eventsStore.fetchEvent(eventId.value)
.then((response) => {
teamsStore.fetchTeam(response.teamId);
teamsStore.fetchTeam(response.teamId)
.then((response) => {
team.value = response.team;
});
});
}
});