diff --git a/frontend/src/components/TheHeader.vue b/frontend/src/components/TheHeader.vue index cc3551c6..d7ab6b62 100644 --- a/frontend/src/components/TheHeader.vue +++ b/frontend/src/components/TheHeader.vue @@ -28,7 +28,7 @@ - + diff --git a/frontend/src/router/index.js b/frontend/src/router/index.js index 868f5fef..b98dcc9f 100644 --- a/frontend/src/router/index.js +++ b/frontend/src/router/index.js @@ -294,7 +294,6 @@ const router = createRouter({ name: 'help', component: HelpView, meta: { - hidden: true, requiresAuth: true, }, }, diff --git a/frontend/src/views/HelpView.vue b/frontend/src/views/HelpView.vue index 5a9737ce..a1fa8bdb 100644 --- a/frontend/src/views/HelpView.vue +++ b/frontend/src/views/HelpView.vue @@ -60,6 +60,18 @@ 2023 - Policy and Procedure Manual +
+
+ + + 2023 - Funding Agreement Template + +
+
+ + + Applicant Guide + @@ -73,6 +85,18 @@ Policy and Procedure Manual Training e-Module + + + + EE $10 a Day Policy and Procedure Manual + +
+
+ + + EE $10 a Day Funding Agreement Template + +
Home @@ -121,9 +145,14 @@ export default { title: 'Training e-Modules', id: 'training', }, + { + title: 'Other', + id: 'other', + }, ] this.generalPanels = this.allGeneralPanelIDs - this.testParticipantPanels = this.allTestParticipantPanelIDs + // OFMCC-6203 - Other section will be collapsed by default + this.testParticipantPanels = this.allTestParticipantPanelIDs.slice(0, -1) }, methods: { isEmpty, diff --git a/frontend/src/views/HomeView.vue b/frontend/src/views/HomeView.vue index 9e2976aa..80392038 100644 --- a/frontend/src/views/HomeView.vue +++ b/frontend/src/views/HomeView.vue @@ -49,7 +49,7 @@ Maintain or edit organization or facility information and request a change.
- + Need support? Find program training tools, resources and technical help. diff --git a/frontend/src/views/applications/ApplicationsHistoryView.vue b/frontend/src/views/applications/ApplicationsHistoryView.vue index 24178f16..523a98fe 100644 --- a/frontend/src/views/applications/ApplicationsHistoryView.vue +++ b/frontend/src/views/applications/ApplicationsHistoryView.vue @@ -305,7 +305,9 @@ export default { return false //OFM core generates PDF upon submit - Supp App generates PDF only once approved } else if (application.applicationType === APPLICATION_TYPES.OFM) { - return !this.DRAFT_STATUS_CODES.includes(application?.statusCode) + return false + // OFMCC-6204 - temporary hide the PDF button for Base Funding Application because of the missing fields issue + // return !this.DRAFT_STATUS_CODES.includes(application?.statusCode) } return application.statusCode === SUPPLEMENTARY_APPLICATION_STATUS_CODES.APPROVED || application.statusCode === SUPPLEMENTARY_APPLICATION_STATUS_CODES.SUBMITTED }, diff --git a/frontend/src/views/applications/EligibilityView.vue b/frontend/src/views/applications/EligibilityView.vue index ea156cb2..508c70db 100644 --- a/frontend/src/views/applications/EligibilityView.vue +++ b/frontend/src/views/applications/EligibilityView.vue @@ -1,10 +1,6 @@