File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/shared/components/challenge-detail Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ workflows:
245
245
filters :
246
246
branches :
247
247
only :
248
- - gig-application-fixes
248
+ - develop
249
249
# This is beta env for production soft releases
250
250
- " build-prod-beta " :
251
251
context : org-global
Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ export default function ChallengeHeader(props) {
204
204
}
205
205
}
206
206
207
- const checkpointCount = checkpoints && checkpoints . numberOfUniqueSubmitters ;
207
+ const checkpointCount = checkpoints && checkpoints . numberOfPassedScreeningSubmissions ;
208
208
209
209
let nextDeadlineMsg ;
210
210
switch ( ( status || '' ) . toLowerCase ( ) ) {
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export default function ChallengeDetailsView(props) {
61
61
let stockArtValue = '' ;
62
62
const allowStockArt = _ . find ( metadata , { name : 'allowStockArt' } ) ;
63
63
if ( allowStockArt ) {
64
- stockArtValue = allowStockArt . value ;
64
+ stockArtValue = allowStockArt . value === 'true' ;
65
65
}
66
66
67
67
let environment = '' ;
You can’t perform that action at this time.
0 commit comments