Skip to content

Commit f8ea1cb

Browse files
committed
ccfri-3752 - update CCFRI funding guidelines link
1 parent b7af999 commit f8ea1cb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

frontend/src/components/ccfriApplication/AFS/ApprovableFeeSchedule.vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
</div>
1212
<FacilityHeader
1313
v-if="currentFacility"
14-
:facility-account-number="currentFacility?.facilityAccountNumber ?? null"
15-
:facility-name="currentFacility?.facilityName ?? null"
16-
:license-number="currentFacility?.licenseNumber ?? null"
14+
:facility-account-number="currentFacility?.facilityAccountNumber"
15+
:facility-name="currentFacility?.facilityName"
16+
:license-number="currentFacility?.licenseNumber"
1717
class="mb-10"
1818
/>
1919
<div class="mt-8">
@@ -25,12 +25,12 @@
2525
<div>
2626
Based on the information you provided and the policies in the
2727
<a
28-
href="https://www2.gov.bc.ca/assets/gov/family-and-social-supports/child-care/childcarebc-programs/ccfri/ccfri_funding_guidelines_24_25.pdf"
28+
:href="getFundingUrl(programYearId)"
2929
target="_blank"
3030
rel="noopener"
3131
class="ccfri-funding-guideline-link"
3232
>
33-
2024-25 CCFRI Funding Guidelines
33+
{{ formattedProgramYear }} CCFRI Funding Guidelines
3434
</a>
3535
<span>, we can approve the following parent fee schedule:</span>
3636
</div>
@@ -132,8 +132,8 @@ export default {
132132
};
133133
},
134134
computed: {
135-
...mapState(useAppStore, ['getChildCareCategoryNumberById', 'getProgramYearOrderById']),
136-
...mapState(useApplicationStore, ['formattedProgramYear']),
135+
...mapState(useAppStore, ['getChildCareCategoryNumberById', 'getFundingUrl', 'getProgramYearOrderById']),
136+
...mapState(useApplicationStore, ['formattedProgramYear', 'programYearId']),
137137
...mapState(useNavBarStore, ['navBarList', 'nextPath', 'previousPath']),
138138
currentFacility() {
139139
return this.navBarList.find((el) => el.ccfriApplicationId == this.$route.params.urlGuid);

0 commit comments

Comments
 (0)