diff options
Diffstat (limited to 'web/pw-server/src/lib/components/matches')
-rw-r--r-- | web/pw-server/src/lib/components/matches/MatchList.svelte | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/web/pw-server/src/lib/components/matches/MatchList.svelte b/web/pw-server/src/lib/components/matches/MatchList.svelte index 01a0b82..e38543e 100644 --- a/web/pw-server/src/lib/components/matches/MatchList.svelte +++ b/web/pw-server/src/lib/components/matches/MatchList.svelte @@ -16,6 +16,7 @@ <th /> <th /> <th class="col-player-2">player 2</th> + <th class="col-map">map</th> </tr> {#each matches as match} <tr class="match-table-row" on:click={() => goto(match_url(match))}> @@ -38,6 +39,9 @@ <td class="col-player-2"> {match["players"][1]["bot_name"]} </td> + <td class="col-map"> + {match["map"]?.name || ""} + </td> </tr> {/each} </table> @@ -84,6 +88,10 @@ text-align: left; } + .col-map { + text-align: right; + } + .matches-table { margin: 12px auto; border-collapse: collapse; |