diff --git a/frontend/src/pages/home/HomePage.vue b/frontend/src/pages/home/HomePage.vue index 9bb11e3..78851dc 100644 --- a/frontend/src/pages/home/HomePage.vue +++ b/frontend/src/pages/home/HomePage.vue @@ -357,7 +357,11 @@ const joinGame = async (game) => {
Match ID: {{ match.id }}
-
Type: {{ match.type }} +
{{ new + Date(game.began_at).toLocaleDateString() }} • {{ new + Date(game.began_at).toLocaleTimeString([], { + hour: '2-digit', + minute: '2-digit' }) }}
@@ -396,7 +400,11 @@ const joinGame = async (game) => {
Host: {{ game.player1?.nickname || 'Anonymous' }}
-
{{ game.began_at }}
+
{{ new + Date(game.began_at).toLocaleDateString() }} • {{ new + Date(game.began_at).toLocaleTimeString([], { + hour: '2-digit', + minute: '2-digit' }) }}