Show substitutions in standings

This commit is contained in:
Michel ten Voorde
2025-11-06 16:42:22 +01:00
parent 7fd84005f9
commit 19e4372006
4 changed files with 25 additions and 6 deletions

View File

@@ -12,7 +12,8 @@ import {Team} from "../../model/team";
<app-player-display
[player]="team.player1"
[event]="event"
[tournament]="tournament">
[tournament]="tournament"
[exlicitSubstitute]="explicitSubstitute">
</app-player-display>
@if (event.doublesEvent && team.player2) {
@@ -34,4 +35,5 @@ export class TeamDisplayComponent {
@Input({ required: true }) event!: Event;
@Input({ required: true }) tournament!: Tournament;
@Input({ required: false }) inline: boolean = true;
@Input({ required: false }) explicitSubstitute: boolean = false;
}