File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
src/shared/components/Leaderboard/LeaderboardTable Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ export default function LeaderboardTable(props) {
122
122
}
123
123
{
124
124
isAlgo ? (
125
- < td styleName = { `${ stylesName } .col-points` } > { competitor [ 'srm_tco19.score' ] } </ td >
125
+ < td styleName = { `${ stylesName } .col-points` } > { competitor [ 'tco_leaderboard.total_score' ] || competitor [ ' srm_tco19.score'] } </ td >
126
126
) : null
127
127
}
128
128
</ tr >
@@ -141,7 +141,13 @@ export default function LeaderboardTable(props) {
141
141
< th styleName = { `${ stylesName } .col-fulfillment` } > Fulfillment</ th >
142
142
) : null
143
143
}
144
- < th styleName = { `${ stylesName } .col-challenges` } > # of Challenges</ th >
144
+ {
145
+ isAlgo ? (
146
+ < th styleName = { `${ stylesName } .col-challenges` } > # of Matches</ th >
147
+ ) : (
148
+ < th styleName = { `${ stylesName } .col-challenges` } > # of Challenges</ th >
149
+ )
150
+ }
145
151
< th styleName = { `${ stylesName } .col-points` } > Points</ th >
146
152
{
147
153
isTopGear ? (
You can’t perform that action at this time.
0 commit comments