X-Git-Url: https://git.auder.net/doc/index.css?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FMyGames.vue;h=c89b2d6f71c1a7e0876c416daf68a1177cce12a2;hb=89021f181ac0689bbc785ce0ebd9a910e66352b0;hp=8183ff40f6e0247df4be9c7fe8844ed2591733ac;hpb=602d6befd30793111d3fda6e733f73e08d8b7a30;p=vchess.git diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index 8183ff40..c89b2d6f 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -16,9 +16,8 @@ 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", + name: "my-my-games", components: { GameList, }, @@ -32,7 +31,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 +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);