Skip to content

Commit

Permalink
24013 - FE Incorporation Application Output Updates (bcgov#3068)
Browse files Browse the repository at this point in the history
* Ensure retrieved date value aligns with label
* Display recognition date
  • Loading branch information
eason-pan-bc authored Nov 8, 2024
1 parent 0a24b49 commit 479c8dc
Showing 1 changed file with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@
<div>{{business.identifier}}</div>
{% endif %}
<div class="pt-2">{{effective_date_time}}</div>
<div class="pt-2">{{recognition_date_time}}</div>
{% if header.isFutureEffective %}
<div class="pt-2">{{effective_date_time}}</div>
{% else %}
<div class="pt-2">{{recognition_date_time}}</div>
{% endif %}
<div class="pt-2">{{report_date_time}}</div>
</td>
{% elif header.reportType == 'noticeOfArticles' %}
Expand Down Expand Up @@ -124,7 +128,11 @@
<div>{{business.identifier}}</div>
{% endif %}
<div class="pt-2">{{filing_date_time}}</div>
<div class="pt-2">{{recognition_date_time}}</div>
{% if header.isFutureEffective %}
<div class="pt-2">{{effective_date_time}}</div>
{% else %}
<div class="pt-2">{{recognition_date_time}}</div>
{% endif %}
<div class="pt-2">{{report_date_time}}</div>
</td>
{% elif header.name == 'registration' %}
Expand Down

0 comments on commit 479c8dc

Please sign in to comment.