X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FGameList.vue;h=2b7f65731f08e84bb8e1fb9454ea883e5c031ac0;hb=afd3240d89a2f6191fe9426960dc0c1667b40c77;hp=bb97a74278eebcf69f21a54cac5acd2a66c7a38f;hpb=9d58ef95e3affd799571838164f7c5bbfda11f64;p=vchess.git diff --git a/client/src/components/GameList.vue b/client/src/components/GameList.vue index bb97a742..2b7f6573 100644 --- a/client/src/components/GameList.vue +++ b/client/src/components/GameList.vue @@ -2,17 +2,16 @@ table tr th Variant - th Players names - th Cadence + th White + th Black + th Time control th(v-if="showResult") Result - th(v-else) Moves count tr(v-for="g in games" @click="$emit('show-game',g)") td {{ g.vname }} - td - span(v-for="p in g.players") {{ p.name }} - td {{ g.mainTime }} + {{ g.increment }} + td {{ g.players[0].name || "@nonymous" }} + td {{ g.players[1].name || "@nonymous" }} + td {{ g.timeControl }} td(v-if="showResult") {{ g.score }} - td(v-else) {{ g.movesCount }}