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) {
376376 const submissionPh = _ . filter ( phases , { name : 'Submission' , isOpen : true } )
377377 const finalFixPh = _ . filter ( phases , { name : 'Final Fix' , isOpen : true } )
378378 if ( checkPoint . length !== 0 ) {
379- phaseId = _ . get ( ' checkPoint[0]' , ' phaseId' , null )
379+ phaseId = _ . get ( checkPoint , " [0]. phaseId" , null )
380380 } else if ( submissionPh . length !== 0 ) {
381- phaseId = _ . get ( ' submissionPh[0]' , ' phaseId' , null )
381+ phaseId = _ . get ( submissionPh , " [0]. phaseId" , null )
382382 } else if ( finalFixPh . length !== 0 ) {
383- phaseId = _ . get ( ' finalFixPh[0]' , ' phaseId' , null )
383+ phaseId = _ . get ( finalFixPh , " [0]. phaseId" , null )
384384 }
385385 }
386386 return phaseId
You can’t perform that action at this time.
0 commit comments