diff --git a/src/app/pages/tables/bikes/bikes.component.html b/src/app/pages/tables/bikes/bikes.component.html index 35d7ec7..13bd53f 100644 --- a/src/app/pages/tables/bikes/bikes.component.html +++ b/src/app/pages/tables/bikes/bikes.component.html @@ -26,19 +26,20 @@ - - Weight + + Fahrgestellnummer - + + {{ element.security.frameNumber }} - - Symbol - {{ element.symbol }} + + Anzahl Kinder + {{ element.numberOfChildren }} diff --git a/src/app/pages/tables/bikes/bikes.component.ts b/src/app/pages/tables/bikes/bikes.component.ts index 655ecf7..cbf0e03 100644 --- a/src/app/pages/tables/bikes/bikes.component.ts +++ b/src/app/pages/tables/bikes/bikes.component.ts @@ -7,7 +7,7 @@ import { BikesService, CargoBikeResult } from 'src/app/services/bikes.service'; styleUrls: ['./bikes.component.scss'], }) export class BikesComponent { - displayedColumns: string[] = ['id', 'name', 'weight', 'symbol']; + displayedColumns: string[] = ['id', 'name', 'frameNumber', 'numberOfChildren']; bikes: CargoBikeResult[];