X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FGameList.vue;h=60d4fedeb0a4016b20b4a3b44c813e68b904d8d1;hb=0b0dc040acd01ff1855b159c2933cb2eff73b26d;hp=2b7f65731f08e84bb8e1fb9454ea883e5c031ac0;hpb=afd3240d89a2f6191fe9426960dc0c1667b40c77;p=vchess.git diff --git a/client/src/components/GameList.vue b/client/src/components/GameList.vue index 2b7f6573..60d4fede 100644 --- a/client/src/components/GameList.vue +++ b/client/src/components/GameList.vue @@ -6,7 +6,8 @@ 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].name || "@nonymous" }} td {{ g.players[1].name || "@nonymous" }} @@ -15,13 +16,47 @@ table + +