From: Benjamin Auder Date: Wed, 4 Mar 2020 18:29:03 +0000 (+0100) Subject: 'update' X-Git-Url: https://git.auder.net/?p=vchess.git;a=commitdiff_plain;h=1aaae6ce703d43ccf4328da9b6b4dca4ed67289a 'update' --- diff --git a/TODO b/TODO index 3b8b6512..69ecfef6 100644 --- a/TODO +++ b/TODO @@ -11,6 +11,8 @@ Saw once a "double challenge" bug, one anonymous and a second one logged Both were asked a challenge probably, and both challenges added as different ones. => would probably be solved by waiting for identity before adding people to people array +Bug only in prod: observers don't see current games in live games section +also some games seem to have trouble to start... Color bug anonymous on game name but username OK in chat game not showing on "live games" ... ? diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index c9c65659..5d19e7d7 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -43,6 +43,10 @@ export default { }, created: function() { GameStorage.getAll(true, localGames => { + + +console.log(localGames); + localGames.forEach(g => (g.type = this.classifyObject(g))); this.liveGames = localGames; });