File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/shared/components/challenge-listing/ChallengeCard/Status Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -176,6 +176,7 @@ workflows:
176
176
only :
177
177
- hot-fix-submit-blank
178
178
- develop
179
+ - feature-devices-lookup
179
180
# This is alternate dev env for parallel testing
180
181
- " build-test " :
181
182
context : org-global
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ export default function ChallengeStatus(props) {
216
216
. filter ( p => p . phaseType !== 'Registration' )
217
217
. sort ( ( a , b ) => moment ( a . scheduledEndTime ) . diff ( b . scheduledEndTime ) ) [ 0 ] ;
218
218
219
- if ( ! statusPhase && subTrack === 'FIRST_2_FINISH' && checkPhases . length ) {
219
+ if ( ! statusPhase && ( subTrack === 'FIRST_2_FINISH' || subTrack === 'CODE' ) && checkPhases . length ) {
220
220
statusPhase = _ . clone ( checkPhases [ 0 ] ) ;
221
221
statusPhase . phaseType = 'Submission' ;
222
222
}
You can’t perform that action at this time.
0 commit comments