X-Git-Url: https://git.auder.net/pieces/Checkered/cq.svg?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FMyGames.vue;h=9e58cfd5cba9708b17155cebd98670d7fd87a22b;hb=9ddaf8da8743c50b9019888a82d84392913c60c9;hp=1ca94117536a21d20066ec62183fdce9619edb4c;hpb=77c5096644d83aaae8ab1dd42a5cde524507cf9d;p=vchess.git diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index 1ca94117..9e58cfd5 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -16,7 +16,6 @@ import { store } from "@/store"; import { GameStorage } from "@/utils/gameStorage"; import { ajax } from "@/utils/ajax"; import GameList from "@/components/GameList.vue"; - export default { name: "my-games", components: { @@ -47,7 +46,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);