X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FMyGames.vue;h=6ed2c7f63a9129835aa00a3c7a3689685c5ad86d;hb=fd41e587ca01d709551e0cc04bb94fb5e769fe97;hp=0973d32c25ae0a68ab5e48ea9a1f692f5714e0fd;hpb=dac395887d96e2d642b209c6db6aaacc3ffacb34;p=vchess.git diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index 0973d32c..6ed2c7f6 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -3,8 +3,8 @@ main .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 .button-group - button(@click="display='live'") Live games - button(@click="display='corr'") Correspondance games + button(@click="display='live'") {{ st.tr["Live games"] }} + button(@click="display='corr'") {{ st.tr["Correspondance games"] }} GameList(v-show="display=='live'" :games="filterGames('live')" @show-game="showGame") GameList(v-show="display=='corr'" :games="filterGames('corr')" @@ -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);