Skip to content

Commit 682c2b3

Browse files
authored
Merge pull request #833 from topcoder-platform/pm-1494_1
fix(PM-1494): Fix date format
2 parents 7b4edde + 7b853be commit 682c2b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ workflows:
149149
context : org-global
150150
filters:
151151
branches:
152-
only: ['develop', 'migration-setup', 'pm-1494']
152+
only: ['develop', 'migration-setup', 'pm-1494_1']
153153
- deployProd:
154154
context : org-global
155155
filters:

src/routes/copilotRequest/approveRequest.service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ module.exports = (req, data, existingTransaction) => {
7575
work_manager_url: config.get('workManagerUrl'),
7676
opportunity_type: getCopilotTypeLabel(type),
7777
opportunity_title: opportunityTitle,
78-
start_date: moment.utc(startDate).format("YYYY-MM-DD HH:mm:ss [UTC]"),
78+
start_date: moment(startDate).format("DD-MM-YYYY"),
7979
},
8080
sendgrid_template_id: TEMPLATE_IDS.CREATE_REQUEST,
8181
recipients: [recipient],

0 commit comments

Comments
 (0)