diff --git a/src/app/app.component.scss b/src/app/app.component.scss index 22c6daf..2285e1a 100644 --- a/src/app/app.component.scss +++ b/src/app/app.component.scss @@ -23,7 +23,6 @@ app-topmenu { overflow: auto !important; grid-template-columns: 1fr 1fr; - grid-auto-flow: column; } diff --git a/src/app/content/poule/poule.component.ts b/src/app/content/poule/poule.component.ts index 589ab28..935ec09 100644 --- a/src/app/content/poule/poule.component.ts +++ b/src/app/content/poule/poule.component.ts @@ -30,12 +30,9 @@ export class PouleComponent implements OnInit, OnChanges { } private loadData() { - console.log('POULE COMP: ' + this.poule + ' ' + this.idChampionship + ' ' + this.tier); // fetch the poule data this.championshipService.getTeamsInPoule(this.idChampionship, this.tier, this.poule).subscribe(val => { this.teams = val; - console.log('teams in poule'); - console.log(val); // calculate the maximum of the racecounts... this influences the amount of columns in the table let maxRaces = 0; @@ -136,8 +133,6 @@ export class PouleComponent implements OnInit, OnChanges { } ngOnChanges(changes: SimpleChanges): void { - console.log('onchanges called...'); - console.log(changes); this.loadData(); } diff --git a/src/app/reclamespinner/reclamespinner.component.html b/src/app/reclamespinner/reclamespinner.component.html index ef0dbe4..11f8587 100644 --- a/src/app/reclamespinner/reclamespinner.component.html +++ b/src/app/reclamespinner/reclamespinner.component.html @@ -1,7 +1,8 @@