From 0c801dc830fe3a7bb0b7fb38d5cb891028ee4f47 Mon Sep 17 00:00:00 2001 From: Jen Beckett <115109120+jenbeckett@users.noreply.github.com> Date: Thu, 17 Oct 2024 09:03:57 -0700 Subject: [PATCH] turn pdf on --- frontend/src/views/applications/ApplicationsHistoryView.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/src/views/applications/ApplicationsHistoryView.vue b/frontend/src/views/applications/ApplicationsHistoryView.vue index 523a98fe..24178f16 100644 --- a/frontend/src/views/applications/ApplicationsHistoryView.vue +++ b/frontend/src/views/applications/ApplicationsHistoryView.vue @@ -305,9 +305,7 @@ 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 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 !this.DRAFT_STATUS_CODES.includes(application?.statusCode) } return application.statusCode === SUPPLEMENTARY_APPLICATION_STATUS_CODES.APPROVED || application.statusCode === SUPPLEMENTARY_APPLICATION_STATUS_CODES.SUBMITTED },