Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 37e9d50

Browse files
authoredFeb 15, 2023
Merge pull request #560 from topcoder-platform/fix/plat-2334
add Checkpoint Submission
2 parents d6ff83c + abfd6d6 commit 37e9d50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/common/phase-helper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class ChallengePhaseHelper {
7676
if (p.name === 'Registration') {
7777
p.scheduledStartDate = moment(startDate).toDate()
7878
}
79-
if (p.name === 'Submission') {
79+
if (_.includes(['Submission', 'Checkpoint Submission'], p.name)) {
8080
if (p.scheduledStartDate != null) {
8181
p.scheduledStartDate = moment(p.scheduledStartDate).toDate()
8282
} else {

0 commit comments

Comments
 (0)
Please sign in to comment.