diff --git a/src/services/challenges.js b/src/services/challenges.js index 31f8fa3f..5ed8c30c 100644 --- a/src/services/challenges.js +++ b/src/services/challenges.js @@ -339,7 +339,11 @@ class ChallengesService { .then(res => res.challenges); } - const registrants = await this.getChallengeRegistrants(challenge.id); + let registrants = await this.getChallengeRegistrants(challenge.id); + // This TEMP fix to colorStyle, this will be fixed with issue #4530 + registrants = _.map(registrants, r => ({ + ...r, colorStyle: 'color: #151516', + })); challenge.registrants = registrants; if (memberId) {