From 2d849adc2af43c310e4f21d62357a9e091b37f75 Mon Sep 17 00:00:00 2001 From: kmitresse Date: Sat, 27 Apr 2024 16:57:36 +0200 Subject: [PATCH] fix: devWeb - get nbPlayedGames connected users --- S2/DevWeb/Projet/src/main/webapp/WEB-INF/pages/game.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/S2/DevWeb/Projet/src/main/webapp/WEB-INF/pages/game.jsp b/S2/DevWeb/Projet/src/main/webapp/WEB-INF/pages/game.jsp index 16a08b6..b838683 100644 --- a/S2/DevWeb/Projet/src/main/webapp/WEB-INF/pages/game.jsp +++ b/S2/DevWeb/Projet/src/main/webapp/WEB-INF/pages/game.jsp @@ -152,7 +152,7 @@ $tdUsername.textContent = user.username; - $tdNbPlayedGame.textContent = user.nbPlayedGame; + $tdNbPlayedGame.textContent = user.nbPlayedGames; $tdNbWins.textContent = user.nbWin; $tdRightClick.textContent = user.rigthClickPercentRate + "%"; $tdRapidClick.textContent = user.rapidClickPercentRate + "%";