Skip to content

Commit

Permalink
Merge pull request #1795 from bcgov/feature/ALCS-2004-4
Browse files Browse the repository at this point in the history
Fix Zero Optional Attachment Bug on Submission in Applications and NOIs
  • Loading branch information
Abradat authored Jul 24, 2024
2 parents 5967283 + 4dbc311 commit a95bc63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ <h3>7. Optional Documents</h3>
[isLast]="last"
(fileClicked)="openFile(file)">
</app-optional-attachments-mobile-card>
<app-no-data *ngIf="otherFiles.length === 0" [showRequired]="showErrors"></app-no-data>
<app-no-data *ngIf="otherFiles.length === 0" [showRequired]="false"></app-no-data>
</div>
<div *ngIf="showEdit" class="edit-button">
<button (click)="onNavigateToStep(6)" color="accent" mat-flat-button>Edit Section</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ <h3>7. Optional Documents</h3>
[isLast]="last"
(fileClicked)="openFile(file)">
</app-optional-attachments-mobile-card>
<app-no-data *ngIf="otherFiles.length === 0" [showRequired]="showErrors"></app-no-data>
<app-no-data *ngIf="otherFiles.length === 0" [showRequired]="false"></app-no-data>
</div>
<div *ngIf="showEdit" class="edit-button">
<button (click)="onNavigateToStep(6)" color="accent" mat-flat-button>Edit Section</button>
Expand Down

0 comments on commit a95bc63

Please sign in to comment.