Experimental multi-tabs support (TODO: prevent multi-connect)
[vchess.git] / client / src / views / MyGames.vue
index 8183ff4..6ed2c7f 100644 (file)
@@ -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)
@@ -47,7 +47,7 @@ export default {
   methods: {
     // TODO: classifyObject and filterGames are redundant (see Hall.vue)
     classifyObject: function(o) {
-      return (o.timeControl.indexOf('d') === -1 ? "live" : "corr");
+      return (o.cadence.indexOf('d') === -1 ? "live" : "corr");
     },
     filterGames: function(type) {
       return this.games.filter(g => g.type == type);