Skip to content

Commit

Permalink
Fixed user table again :')
Browse files Browse the repository at this point in the history
  • Loading branch information
JonMike8 committed Nov 10, 2022
1 parent e291b6d commit 9cb34b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MavenBack/src/main/webapp/user.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
gamesReq.onreadystatechange = function(){
if(gamesReq.readyState == 4 && gamesReq.status == 200){
var games = JSON.parse(gamesReq.responseText);
for (var i = games.length-1; i >= 0; i--) {
for (var i = 0; i < games.length; i++) {
var newRow = document.createElement('tr');
var date = document.createElement('td');
var winner = document.createElement('td');
Expand Down

0 comments on commit 9cb34b6

Please sign in to comment.