Version 1.0 #102

Merged
FernandoJVideira merged 163 commits from develop into master 2026-01-03 14:49:00 +00:00
Showing only changes of commit 2d2d0149d8 - Show all commits
+10 -2
View File
@@ -357,7 +357,11 @@ const joinGame = async (game) => {
</div>
<div>
<div class="font-medium text-sm">Match ID: {{ match.id }}</div>
<div class="text-[10px] text-muted-foreground">Type: {{ match.type }}
<div class="text-[10px] text-muted-foreground">{{ new
Date(game.began_at).toLocaleDateString() }} {{ new
Date(game.began_at).toLocaleTimeString([], {
hour: '2-digit',
minute: '2-digit' }) }}
</div>
</div>
</div>
@@ -396,7 +400,11 @@ const joinGame = async (game) => {
<div>
<div class="font-medium text-sm">Host: {{ game.player1?.nickname ||
'Anonymous' }}</div>
<div class="text-[10px] text-muted-foreground">{{ game.began_at }}</div>
<div class="text-[10px] text-muted-foreground">{{ new
Date(game.began_at).toLocaleDateString() }} {{ new
Date(game.began_at).toLocaleTimeString([], {
hour: '2-digit',
minute: '2-digit' }) }}</div>
</div>
</div>
</div>