Skip to content

Commit

Permalink
show packs in hits overview on game route
Browse files Browse the repository at this point in the history
  • Loading branch information
Timtam committed Apr 11, 2024
1 parent a155038 commit 059cd2a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions client/src/pages/game.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,11 @@ export function Game() {
<th>{t("artist")}</th>
<th>{t("title")}</th>
<th>{t("year")}</th>
<th>
{t("pack", {
count: 1,
})}
</th>
</tr>
</thead>
<tbody>
Expand All @@ -351,6 +356,9 @@ export function Game() {
<td>
{h.year}
</td>
<td>
{h.pack}
</td>
</tr>
))}
</tbody>
Expand Down

0 comments on commit 059cd2a

Please sign in to comment.