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();