File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
src/client/components/baseComponents/stats Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export class PlayerStatsGrid extends LitElement {
11
11
}
12
12
@media (min-width: 640px) {
13
13
.grid {
14
- grid-template-columns: repeat(3 , 1fr);
14
+ grid-template-columns: repeat(2 , 1fr);
15
15
}
16
16
}
17
17
.stat {
@@ -35,7 +35,7 @@ export class PlayerStatsGrid extends LitElement {
35
35
render ( ) {
36
36
return html `
37
37
< div class ="grid mb-2 ">
38
- ${ Array ( 6 )
38
+ ${ Array ( 4 )
39
39
. fill ( 0 )
40
40
. map (
41
41
( _ , i ) => html `
Original file line number Diff line number Diff line change @@ -178,16 +178,12 @@ export class PlayerStatsTreeView extends LitElement {
178
178
translateText ( "player_modal.stats_losses" ) ,
179
179
translateText ( "player_modal.stats_wlr" ) ,
180
180
translateText ( "player_modal.stats_games_played" ) ,
181
- translateText ( "player_modal.stats_play_time" ) ,
182
- translateText ( "player_modal.stats_last_active" ) ,
183
181
] }
184
182
.values =${ [
185
183
renderNumber ( leaf . wins ) ,
186
184
renderNumber ( leaf . losses ) ,
187
185
wlr . toFixed ( 2 ) ,
188
186
renderNumber ( leaf . total ) ,
189
- translateText ( "player_modal.not_applicable" ) ,
190
- translateText ( "player_modal.not_applicable" ) ,
191
187
] }
192
188
> </ player-stats-grid >
193
189
You can’t perform that action at this time.
0 commit comments