---|qcm| Mise à jour du component 'QCM'

This commit is contained in:
Julien Gautier
2023-10-06 01:54:33 +02:00
parent 6f2bdf2b4f
commit 08273863b7
8 changed files with 50 additions and 23 deletions
@@ -37,20 +37,19 @@ export class DashboardComponent implements OnInit, OnDestroy {
private _canopies: Subscription = new Subscription();
private _dropzones: Subscription = new Subscription();
*/
title = 'Dashboard';
errors!: Errors;
isAuthenticated = false;
canModify = false;
aeronefAggregate!: Array<AeronefByImat>;
aeronefs!: Array<Aeronef>;
aeronefsCount = 0;
canopyAggregate!: Array<CanopyModelBySize>;
canopies!: Array<Canopy>;
canopiesCount = 0;
dropzoneAggregate!: Array<DropZoneByYear>;
dropzones!: Array<DropZone>;
dropzonesCount = 0;
public title = 'Dashboard';
public errors!: Errors;
public isAuthenticated = false;
public canModify = false;
public aeronefAggregate!: Array<AeronefByImat>;
public aeronefs!: Array<Aeronef>;
public aeronefsCount = 0;
public canopyAggregate!: Array<CanopyModelBySize>;
public canopies!: Array<Canopy>;
public canopiesCount = 0;
public dropzoneAggregate!: Array<DropZoneByYear>;
public dropzones!: Array<DropZone>;
public dropzonesCount = 0;
constructor(
private route: ActivatedRoute,