Skip to content

Commit

Permalink
fixed small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz authored Dec 9, 2018
1 parent 01c0085 commit e7d883f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/applications/applications.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit e7d883f

Please sign in to comment.