Skip to content

Commit

Permalink
fix: detail dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
ttamx committed May 12, 2024
1 parent a351818 commit a784e41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Scoreboard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -362,13 +362,13 @@ dialog {
class="border-separate border-spacing-0 rounded-lg border border-gray-500 mx-auto overflow-hidden text-center"
>
<tr>
<th class="text-lg">Subtask</th>
<th>Subtask</th>
{#each Object.keys(users[name][task]) as index}
<th class="text-lg">{index}</th>
<td>{index}</td>
{/each}
</tr>
<tr>
<th class="text-lg">Score</th>
<th>Score</th>
{#each Object.values(users[name][task]) as score}
<td>{score}</td>
{/each}
Expand Down

0 comments on commit a784e41

Please sign in to comment.