X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FMyGames.vue;h=1ca94117536a21d20066ec62183fdce9619edb4c;hp=8183ff40f6e0247df4be9c7fe8844ed2591733ac;hb=77c5096644d83aaae8ab1dd42a5cde524507cf9d;hpb=f51c37cf24a7d695cdd51a3b0298a8ff64c3963a diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index 8183ff40..1ca94117 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -32,7 +32,7 @@ export default { created: function() { GameStorage.getAll((localGames) => { localGames.forEach((g) => g.type = this.classifyObject(g)); - //Array.prototype.push.apply(this.games, localGames); /TODO: Vue3... + //Array.prototype.push.apply(this.games, localGames); //TODO: Vue 3 this.games = this.games.concat(localGames); }); if (this.st.user.id > 0)