Skip to content

Commit

Permalink
Merge pull request bcgov#49 from turb0c0w/sam/host-dashboard
Browse files Browse the repository at this point in the history
adding data accessor
  • Loading branch information
turb0c0w authored Jul 9, 2024
2 parents 672f668 + 4c5e8b8 commit 7cb03e9
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,45 +30,45 @@
<BcrosFormSectionReviewItem
:title="tLtsa('tax')"
>
<p>{{ data.taxAuthorities[0].authorityName }}</p>
<p>{{ data[0].record.taxAuthorities[0].authorityName }}</p>
</BcrosFormSectionReviewItem>
<BcrosFormSectionReviewItem
:title="tLtsa('date')"
class="d:mt-[24px]"
>
<p>{{ formatDate(new Date(data.tombstone.applicationReceivedDate)) }}</p>
<p>{{ formatDate(new Date(data[0].record.tombstone.applicationReceivedDate)) }}</p>
</BcrosFormSectionReviewItem>
</div>
<div class="flex flex-col justify-between w-full mobile:flex-col mr-[40px]">
<BcrosFormSectionReviewItem
:title="tLtsa('date')"
>
<p>
{{ data.descriptionsOfLand[0].fullLegalDescription }}
{{ data[0].record.descriptionsOfLand[0].fullLegalDescription }}
</p>
</BcrosFormSectionReviewItem>
<BcrosFormSectionReviewItem
:title="tLtsa('pid')"
class="d:mt-[24px]"
>
<p>
{{ data.descriptionsOfLand[0].parcelIdentifier }}
{{ data[0].record.descriptionsOfLand[0].parcelIdentifier }}
</p>
</BcrosFormSectionReviewItem>
<BcrosFormSectionReviewItem
:title="tLtsa('parcel')"
class="d:mt-[24px]"
>
<p>{{ data.descriptionsOfLand[0].parcelStatus }}</p>
<p>{{ data[0].record.descriptionsOfLand[0].parcelStatus }}</p>
</BcrosFormSectionReviewItem>
</div>
<div class="flex flex-col justify-between w-full mobile:flex-col">
<BcrosFormSectionReviewItem
:title="tLtsa('parcel')"
>
<p>{{ `${tLtsa('parcel')}: ${data.ownershipGroups[0].jointTenancyIndication}` }}</p>
<p>{{ `${tLtsa('numerator')}: ${data.ownershipGroups[0].interestFractionNumerator}` }}</p>
<p>{{ `${tLtsa('denominator')}: ${data.ownershipGroups[0].interestFractionDenominator}` }}</p>
<p>{{ `${tLtsa('parcel')}: ${data[0].record.ownershipGroups[0].jointTenancyIndication}` }}</p>
<p>{{ `${tLtsa('numerator')}: ${data[0].record.ownershipGroups[0].interestFractionNumerator}` }}</p>
<p>{{ `${tLtsa('denominator')}: ${data[0].record.ownershipGroups[0].interestFractionDenominator}` }}</p>
</BcrosFormSectionReviewItem>
</div>
</div>
Expand Down

0 comments on commit 7cb03e9

Please sign in to comment.