Skip to content

Commit

Permalink
Showing Due date rather than issue date on letters
Browse files Browse the repository at this point in the history
  • Loading branch information
datajohnson committed Oct 23, 2023
1 parent a4d5a0a commit eb3410a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export default class YukonExcellenceAwardsApprovalTemplateSerializer {

return {
amountInCents: disbursement.disbursedAmount * 100,
releaseDate: disbursement.issueDate,
releaseDate: disbursement.dueDate,
};
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default class YukonGrantInstitutionApprovalTemplateSerializer {

return {
amountInCents: disbursement.disbursedAmount * 100,
releaseDate: disbursement.issueDate,
releaseDate: disbursement.dueDate,
}
})
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export default class YukonGrantStudentApprovalTemplateSerializer {

return {
amountInCents: disbursement.disbursedAmount * 100,
releaseDate: disbursement.issueDate,
releaseDate: disbursement.dueDate,
}
})
}
Expand Down

0 comments on commit eb3410a

Please sign in to comment.