X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FMyGames.vue;h=6ed2c7f63a9129835aa00a3c7a3689685c5ad86d;hb=714680114508183fba2c07231dbe8f90b5631b81;hp=1ca94117536a21d20066ec62183fdce9619edb4c;hpb=8418f0d79395f40172b11d62eef8b83112f1d240;p=vchess.git diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index 1ca94117..6ed2c7f6 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -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);