Some improvements on time controls + vid
[vchess.git] / client / src / views / MyGames.vue
index a8d9e12..c24e720 100644 (file)
@@ -32,7 +32,8 @@ export default {
   created: function() {
     GameStorage.getAll((localGames) => {
       localGames.forEach((g) => g.type = this.classifyObject(g));
-      Array.prototype.push.apply(this.games, localGames);
+      //Array.prototype.push.apply(this.games, localGames); /TODO: Vue3...
+      this.games = this.games.concat(localGames);
     });
     if (this.st.user.id > 0)
     {