Skip to content

Commit e8a0640

Browse files
Merge pull request #5741 from topcoder-platform/fix/issue-5739
Fix/issue 5739
2 parents 2ba154f + eea5592 commit e8a0640

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,7 @@ workflows:
343343
branches:
344344
only:
345345
- develop
346+
- fix/issue-5739
346347
# This is alternate dev env for parallel testing
347348
- "build-test":
348349
context : org-global
@@ -370,7 +371,7 @@ workflows:
370371
filters: &filters-staging
371372
branches:
372373
only:
373-
- develop
374+
- fix/issue-5739
374375
# Production builds are exectuted
375376
# when PR is merged to the master
376377
# Don't change anything in this configuration

src/shared/components/Dashboard/Challenges/index.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export default function ChallengesFeed({
3838
<div styleName="prize">
3939
<span styleName="amount">
4040
{`$${_.sum(challenge.prizeSets
41+
.filter(set => set.type === 'placement')
4142
.map(item => _.sum(item.prizes.map(prize => prize.value)))).toLocaleString()}`}
4243
</span>
4344
</div>

0 commit comments

Comments
 (0)