Skip to content

Commit

Permalink
Fix missing question marks
Browse files Browse the repository at this point in the history
  • Loading branch information
Abradat committed Oct 7, 2024
1 parent 102c261 commit f915c4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div *ngIf="_applicationSubmission" class="review-table">
<div class="subheading2 grid-1">
Is your proposal for a principal residence with a total floor area greater than 500 m<sup>2</sup>
Is your proposal for a principal residence with a total floor area greater than 500 m<sup>2</sup>?
</div>
<div class="grid-double">
{{ _applicationSubmission.naruWillBeOverFiveHundredM2 ? 'Yes' : 'No' }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div *ngIf="_applicationSubmission" class="review-table">
<div class="subheading2 grid-1">
Is your proposal for a principal residence with a total floor area greater than 500 m<sup>2</sup>
Is your proposal for a principal residence with a total floor area greater than 500 m<sup>2</sup>?
</div>
<div class="grid-double">
<span *ngIf="_applicationSubmission.naruWillBeOverFiveHundredM2 !== null">{{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div *ngIf="applicationSubmission" class="review-table">
<div class="subheading2 grid-1">
Is your proposal for a principal residence with a total floor area greater than 500 m<sup>2</sup>
Is your proposal for a principal residence with a total floor area greater than 500 m<sup>2</sup>?
</div>
<div class="grid-double">
<span *ngIf="applicationSubmission.naruWillBeOverFiveHundredM2 !== null">{{
Expand Down

0 comments on commit f915c4d

Please sign in to comment.