X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FMyGames.vue;h=1ca94117536a21d20066ec62183fdce9619edb4c;hb=77c5096644d83aaae8ab1dd42a5cde524507cf9d;hp=607925422e998d89c1006c54fb69f379e5499f3c;hpb=0b0dc040acd01ff1855b159c2933cb2eff73b26d;p=vchess.git diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index 60792542..1ca94117 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')" @@ -25,14 +25,15 @@ export default { data: function() { return { st: store.state, - display: "live", + display: "live", games: [], }; }, created: function() { GameStorage.getAll((localGames) => { localGames.forEach((g) => g.type = this.classifyObject(g)); - Array.prototype.push.apply(this.games, localGames); + //Array.prototype.push.apply(this.games, localGames); //TODO: Vue 3 + this.games = this.games.concat(localGames); }); if (this.st.user.id > 0) { @@ -57,7 +58,3 @@ export default { }, }; - -