We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a24a45 commit 19790ebCopy full SHA for 19790eb
src/services/challenges.js
@@ -339,7 +339,11 @@ class ChallengesService {
339
.then(res => res.challenges);
340
}
341
342
- const registrants = await this.getChallengeRegistrants(challenge.id);
+ let registrants = await this.getChallengeRegistrants(challenge.id);
343
+ // This TEMP fix to colorStyle, this will be fixed with issue #4530
344
+ registrants = _.map(registrants, r => ({
345
+ ...r, colorStyle: 'color: #151516',
346
+ }));
347
challenge.registrants = registrants;
348
349
if (memberId) {
0 commit comments