Skip to content

Commit

Permalink
Merge pull request #1922 from bcgov/bugfix/ALCS-2315
Browse files Browse the repository at this point in the history
Always show building plans w/ no data if empty in ALCS app info
  • Loading branch information
trslater authored Oct 21, 2024
2 parents 9a83b9a + 0db7dad commit 2c0df0a
Showing 1 changed file with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,16 +150,15 @@
</div>
</div>

<ng-container *ngIf="buildingPlans.length !== 0">
<div class="subheading2 grid-1">Detailed Building Plan(s)</div>
<div class="grid-double">
<div *ngFor="let file of buildingPlans">
<a (click)="openFile(file)">
{{ file.fileName }}
</a>
</div>
<div class="subheading2 grid-1">Detailed Building Plan(s)</div>
<div class="grid-double">
<div *ngFor="let file of buildingPlans">
<a (click)="openFile(file)">
{{ file.fileName }}
</a>
</div>
</ng-container>
<app-no-data *ngIf="buildingPlans.length === 0"></app-no-data>
</div>

<ng-container *ngIf="_applicationSubmission.naruWillImportFill">
<div class="subheading2 grid-1">Describe the type and amount of fill proposed to be placed.</div>
Expand Down

0 comments on commit 2c0df0a

Please sign in to comment.