Skip to content

Commit

Permalink
fix: funding requests table dates
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanoshadjipetrou committed Jul 10, 2024
1 parent 867180b commit 14c2a1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controllers/fundingrequests.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ export class FundingRequestsController {
? moment(item.gacMeeting).format('MMMM YYYY')
: '--',
grant: subitem.grant,
startingDate: subitem.startDate
startingDate: subitem.startingDate
? moment(subitem.startDate).format('DD-MM-YYYY')
: '--',
endingDate: subitem.endDate
endingDate: subitem.endingDate
? moment(subitem.endDate).format('DD-MM-YYYY')
: '--',
principalRecipient: subitem.principalRecipient,
Expand Down

0 comments on commit 14c2a1d

Please sign in to comment.