This commit is contained in:
2025-08-15 09:36:30 +02:00
parent 1da6246d9a
commit 1b2f123683
2 changed files with 0 additions and 6 deletions

View File

@@ -1,11 +1,6 @@
@if (tournament) { @if (tournament) {
<form (ngSubmit)="saveTournament()"> <form (ngSubmit)="saveTournament()">
<mat-card appearance="outlined"> <mat-card appearance="outlined">
<!--
<mat-card-header>
<h5>{{ isEditMode ? 'Bewerk toernooi' : 'Toevoegen toernooi' }}</h5>
</mat-card-header>
-->
<mat-card-content> <mat-card-content>
<div class="row"> <div class="row">
<div class="col-md-6"> <div class="col-md-6">

View File

@@ -65,7 +65,6 @@ export class TournamentEditComponent implements OnInit {
this.tournamentService.getById(Number(id)).subscribe(data => { this.tournamentService.getById(Number(id)).subscribe(data => {
this.tournament = data; this.tournament = data;
}) })
} else {
} }
} }