Add participants count to user results table

This commit is contained in:
Remmy Cat Stock 2022-10-13 19:21:00 +02:00
parent 8a48ddb40d
commit 8aea2c19a8
3 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,7 @@ export default function UserResultsPage() {
<th>{t("results.placing")}</th>
<th>{t("results.team")}</th>
<th>{t("results.tournament")}</th>
<th>{t("results.participants")}</th>
<th>{t("results.date")}</th>
<th>{t("results.mates")}</th>
</tr>
@ -37,6 +38,7 @@ export default function UserResultsPage() {
{result.eventName}
</Link>
</td>
<td>{result.participantCount}</td>
<td>
{databaseTimestampToDate(result.startTime).toLocaleDateString(
i18n.language,

View File

@ -13,6 +13,7 @@
"results.placing": "Platzierung",
"results.team": "Team",
"results.tournament": "Turnier",
"results.participants": "Teilnehmer",
"results.date": "Datum",
"results.mates": "Mitspieler",

View File

@ -13,6 +13,7 @@
"results.placing": "Placing",
"results.team": "Team",
"results.tournament": "Tournament",
"results.participants": "Participants",
"results.date": "Date",
"results.mates": "Mates",