We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 67a587f + a67d406 commit d14ea20Copy full SHA for d14ea20
.circleci/config.yml
@@ -74,9 +74,10 @@ workflows:
74
branches:
75
only:
76
- dev
77
+ - fix-nan-for-release-date
78
- 'build-prod':
79
context: org-global
80
filters:
81
82
- - master
83
+ - master
src/api/admin/admin.service.ts
@@ -332,7 +332,8 @@ export class AdminService {
332
userId: +winning.winner_id,
333
status: body.paymentStatus,
334
amount: body.paymentAmount,
335
- releaseDate: formatDate(new Date(body.releaseDate)),
+ releaseDate:
336
+ body.releaseDate && formatDate(new Date(body.releaseDate)),
337
};
338
339
await this.tcChallengesService.updateLegacyPayments(
0 commit comments