|
11 | 11 | </div> |
12 | 12 | <FacilityHeader |
13 | 13 | 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" |
17 | 17 | class="mb-10" |
18 | 18 | /> |
19 | 19 | <div class="mt-8"> |
|
25 | 25 | <div> |
26 | 26 | Based on the information you provided and the policies in the |
27 | 27 | <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)" |
29 | 29 | target="_blank" |
30 | 30 | rel="noopener" |
31 | 31 | class="ccfri-funding-guideline-link" |
32 | 32 | > |
33 | | - 2024-25 CCFRI Funding Guidelines |
| 33 | + {{ formattedProgramYear }} CCFRI Funding Guidelines |
34 | 34 | </a> |
35 | 35 | <span>, we can approve the following parent fee schedule:</span> |
36 | 36 | </div> |
@@ -132,8 +132,8 @@ export default { |
132 | 132 | }; |
133 | 133 | }, |
134 | 134 | computed: { |
135 | | - ...mapState(useAppStore, ['getChildCareCategoryNumberById', 'getProgramYearOrderById']), |
136 | | - ...mapState(useApplicationStore, ['formattedProgramYear']), |
| 135 | + ...mapState(useAppStore, ['getChildCareCategoryNumberById', 'getFundingUrl', 'getProgramYearOrderById']), |
| 136 | + ...mapState(useApplicationStore, ['formattedProgramYear', 'programYearId']), |
137 | 137 | ...mapState(useNavBarStore, ['navBarList', 'nextPath', 'previousPath']), |
138 | 138 | currentFacility() { |
139 | 139 | return this.navBarList.find((el) => el.ccfriApplicationId == this.$route.params.urlGuid); |
|
0 commit comments