X-Git-Url: https://git.auder.net/images/diag_mark.svg?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FMyGames.vue;h=1ca94117536a21d20066ec62183fdce9619edb4c;hb=99b7a14c6e01c53a49459c8d4681acf6abe635d8;hp=8183ff40f6e0247df4be9c7fe8844ed2591733ac;hpb=602d6befd30793111d3fda6e733f73e08d8b7a30;p=vchess.git 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)