Some improvements on time controls + vid
[vchess.git] / client / src / views / MyGames.vue
index 6079254..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)
     {
@@ -57,7 +58,3 @@ export default {
   },
 };
 </script>
-
-<style scoped lang="sass">
-/* TODO */
-</style>