1
0
Fork 0
mirror of https://codeberg.org/beerbrawl/beerbrawl.git synced 2024-09-22 21:20:52 +02:00

hotfix: reload tournament data after starting ko-phase

This commit is contained in:
Moritz Kepplinger 2024-06-27 09:46:36 +02:00
parent 9e8ac00844
commit 81d2e07d81

View file

@ -293,7 +293,10 @@ export class TournamentQualificationPhaseComponent implements OnInit, OnDestroy
.generateKoMatches(this.tournamentId()!, {
qualifiedTeamIds: qualifiedTeams,
})
.subscribe(() => this.loadData());
.subscribe(() => {
this.loadData();
this.loadTournament();
});
}
async askUserToPickTeams(): Promise<number[]> {