fix: nav jumping on page reload

This commit is contained in:
eneller
2026-03-27 07:41:05 +01:00
parent bdd6de5fbe
commit 3ca88d9e2f
3 changed files with 26 additions and 13 deletions

View File

@@ -1,7 +1,6 @@
// Original Team Generation Screen for arbitrary size and number of teams
import { Component, inject} from '@angular/core';
import { FormsModule } from '@angular/forms';
import { RouterOutlet, ActivatedRoute } from '@angular/router';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { CommonModule } from '@angular/common';
import { Player } from '../model';
@@ -10,7 +9,7 @@ import { DataService } from '../data.service';
@Component({
selector: 'app-screen-basic',
imports: [NgbModule, RouterOutlet, CommonModule, FormsModule],
imports: [NgbModule, CommonModule, FormsModule],
templateUrl: './screen-basic.component.html',
styleUrl: './screen-basic.component.less'
})