From a0dfc7aa1a8c0dd43895efb31d3bd211a600f17d Mon Sep 17 00:00:00 2001 From: Avisha Sodhi <38086281+SodhiA1@users.noreply.github.com> Date: Wed, 11 Dec 2024 12:02:38 -0800 Subject: [PATCH] Update ActiveCollectionPage.vue --- .../src/components/data-collection/ActiveCollectionPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/data-collection/ActiveCollectionPage.vue b/frontend/src/components/data-collection/ActiveCollectionPage.vue index daf6f719..18638307 100644 --- a/frontend/src/components/data-collection/ActiveCollectionPage.vue +++ b/frontend/src/components/data-collection/ActiveCollectionPage.vue @@ -214,7 +214,7 @@ export default { ApiService.apiAxios.get(`${Routes.sdc.ACTIVE_COLLECTION}`) .then(response => { this.collectionObject = response.data; - let createTimestamp = Date.parse(response.data.openDate); + let createTimestamp = Date.parse(response.data.submissionDueDate); this.year = new Date(createTimestamp).getFullYear(); let lowercaseCollectionType = response.data.collectionTypeCode.toLowerCase();