Skip to content

Commit

Permalink
Merge pull request #2150 from bcgov/fix/edx-3037
Browse files Browse the repository at this point in the history
Update ActiveCollectionPage.vue
  • Loading branch information
arcshiftsolutions authored Dec 11, 2024
2 parents 8eb9874 + a0dfc7a commit f2eb514
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit f2eb514

Please sign in to comment.