Skip to content

Commit

Permalink
Merge pull request #1890 from bcgov/feature/ALCS-2282
Browse files Browse the repository at this point in the history
Hide TFWH design response when null
  • Loading branch information
trslater authored Oct 7, 2024
2 parents 884933f + 7db8915 commit 91d55c3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@
Will the temporary foreign worker housing be designed to move from one place to another?
</div>
<div class="grid-double">
{{ _applicationSubmission.tfwhDesign ? 'Yes' : 'No' }}
<span *ngIf="_applicationSubmission.tfwhDesign !== null">
{{ _applicationSubmission.tfwhDesign ? 'Yes' : 'No' }}
</span>
<app-no-data [showRequired]="showErrors" *ngIf="_applicationSubmission.tfwhDesign === null"></app-no-data>
</div>

Expand Down

0 comments on commit 91d55c3

Please sign in to comment.