X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FGameList.vue;h=60d4fedeb0a4016b20b4a3b44c813e68b904d8d1;hb=0b0dc040acd01ff1855b159c2933cb2eff73b26d;hp=8481048dbd56607e7f598c811dee854e7630e225;hpb=42c15a75118bfeb3251cea1f65acb01fcd023f01;p=vchess.git diff --git a/client/src/components/GameList.vue b/client/src/components/GameList.vue index 8481048d..60d4fede 100644 --- a/client/src/components/GameList.vue +++ b/client/src/components/GameList.vue @@ -6,22 +6,57 @@ table th Black th Time control th(v-if="showResult") Result - tr(v-for="g in games" @click="$emit('show-game',g)") + tr(v-for="g in sortedGames" @click="$emit('show-game',g)" + :class="{'my-turn': g.myTurn}") td {{ g.vname }} - td {{ g.players[0] }} - td {{ g.players[1] }} + td {{ g.players[0].name || "@nonymous" }} + td {{ g.players[1].name || "@nonymous" }} td {{ g.timeControl }} td(v-if="showResult") {{ g.score }} + +