Skip to content

Commit 14f90de

Browse files
Merge pull request #5063 from topcoder-platform/tcx-202010
Smoke Testing 2020-10-07
2 parents 724bcef + 57a4c2e commit 14f90de

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ workflows:
245245
filters:
246246
branches:
247247
only:
248-
- gig-application-fixes
248+
- develop
249249
# This is beta env for production soft releases
250250
- "build-prod-beta":
251251
context : org-global

src/shared/components/challenge-detail/Header/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ export default function ChallengeHeader(props) {
204204
}
205205
}
206206

207-
const checkpointCount = checkpoints && checkpoints.numberOfUniqueSubmitters;
207+
const checkpointCount = checkpoints && checkpoints.numberOfPassedScreeningSubmissions;
208208

209209
let nextDeadlineMsg;
210210
switch ((status || '').toLowerCase()) {

src/shared/components/challenge-detail/Specification/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default function ChallengeDetailsView(props) {
6161
let stockArtValue = '';
6262
const allowStockArt = _.find(metadata, { name: 'allowStockArt' });
6363
if (allowStockArt) {
64-
stockArtValue = allowStockArt.value;
64+
stockArtValue = allowStockArt.value === 'true';
6565
}
6666

6767
let environment = '';

0 commit comments

Comments
 (0)