Update to Angular v19 and fixing #3

Merged
sandre merged 41 commits from fix/error-after-update-angular-19 into master 2026-01-20 10:56:35 +00:00
4 changed files with 8 additions and 4 deletions
Showing only changes of commit d5f52dd9ce - Show all commits

View File

@@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild } from "@angular/core";
import { RouterLink } from "@angular/router";
import { RouterLink, RouterModule } from "@angular/router";
import {
MatPaginator,
MatPaginatorModule,
@@ -32,6 +32,7 @@ import { StatsService } from "../../services/stats.service";
MatProgressSpinnerModule,
MatProgressBarModule,
RouterLink,
RouterModule,
],
})
export class ListOfJumpsComponent implements OnInit {

View File

@@ -1,5 +1,5 @@
import { Component, OnInit } from "@angular/core";
import { RouterLink } from "@angular/router";
import { RouterLink, RouterModule } from "@angular/router";
import { formatDate } from "@angular/common";
import { TranslateModule, TranslateService } from "@ngx-translate/core";
import { MatTableDataSource } from "@angular/material/table";
@@ -35,6 +35,7 @@ import { TunnelFlight, TunnelFlightByMonth } from "../../models/tunnel-flight";
MatRadioModule,
MatProgressBarModule,
FormsModule,
RouterModule,
],
})
export class ListOfTunnelFlightsComponent implements OnInit {

View File

@@ -1,5 +1,5 @@
import { Component, OnInit } from "@angular/core";
import { RouterLink } from "@angular/router";
import { RouterLink, RouterModule } from "@angular/router";
import { formatDate } from "@angular/common";
import {
DateAdapter,
@@ -66,6 +66,7 @@ class PickDateAdapter extends NativeDateAdapter {
MatDatepickerModule,
MatProgressSpinnerModule,
FormsModule,
RouterModule,
],
})
export class NewJumpComponent implements OnInit {

View File

@@ -1,5 +1,5 @@
import { Component, OnInit } from "@angular/core";
import { RouterLink } from "@angular/router";
import { RouterLink, RouterModule } from "@angular/router";
import { formatDate } from "@angular/common";
import {
DateAdapter,
@@ -59,6 +59,7 @@ class PickDateAdapter extends NativeDateAdapter {
MatDatepickerModule,
MatProgressSpinnerModule,
FormsModule,
RouterModule,
],
})
export class NewTunnelFlightComponent implements OnInit {