From 9366ca93a72e8e33d8c4221d9303d7caa18cc6a8 Mon Sep 17 00:00:00 2001 From: Jen Beckett <115109120+jenbeckett@users.noreply.github.com> Date: Mon, 21 Oct 2024 10:22:49 -0700 Subject: [PATCH] pdf --- 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 },