Convert all remaining tabs by 2spaces
[vchess.git] / client / src / views / MyGames.vue
index a8d9e12..0973d32 100644 (file)
@@ -25,14 +25,15 @@ export default {
   data: function() {
     return {
       st: store.state,
-                       display: "live",
+      display: "live",
       games: [],
     };
   },
   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)
     {