From e7d883fa768ca21048c29cc0171621fa7a98fe47 Mon Sep 17 00:00:00 2001 From: DavidWein94 Date: Sun, 9 Dec 2018 17:20:14 +0100 Subject: [PATCH] fixed small bug --- src/app/applications/applications.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/applications/applications.component.ts b/src/app/applications/applications.component.ts index b1615970fd..58d1b06f31 100644 --- a/src/app/applications/applications.component.ts +++ b/src/app/applications/applications.component.ts @@ -402,7 +402,7 @@ export class ApplicationsComponent extends AbstractBaseClasse { this.isLoaded_AllApplication = true; for (let app of this.all_applications) { - if (app.Status == 4 || app.Status == this.application_statuses.MODIFICATION_REQUESTED) { + if (app.Status == this.application_statuses.WAIT_FOR_CONFIRMATION || app.Status == this.application_statuses.MODIFICATION_REQUESTED) { this.getFacilityProject(app); } }