File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -376,11 +376,11 @@ function * getSubmissionPhaseId (challengeId) {
376
376
const submissionPh = _ . filter ( phases , { name : 'Submission' , isOpen : true } )
377
377
const finalFixPh = _ . filter ( phases , { name : 'Final Fix' , isOpen : true } )
378
378
if ( checkPoint . length !== 0 ) {
379
- phaseId = _ . get ( ' checkPoint[0]' , ' phaseId' , null )
379
+ phaseId = _ . get ( checkPoint , " [0]. phaseId" , null )
380
380
} else if ( submissionPh . length !== 0 ) {
381
- phaseId = _ . get ( ' submissionPh[0]' , ' phaseId' , null )
381
+ phaseId = _ . get ( submissionPh , " [0]. phaseId" , null )
382
382
} else if ( finalFixPh . length !== 0 ) {
383
- phaseId = _ . get ( ' finalFixPh[0]' , ' phaseId' , null )
383
+ phaseId = _ . get ( finalFixPh , " [0]. phaseId" , null )
384
384
}
385
385
}
386
386
return phaseId
You can’t perform that action at this time.
0 commit comments