X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FGameList.vue;h=62c916fa63e3e723adb7a5a3ef6218126f2872f1;hp=d0ea2f01efdd852219fa7c17f69c0b5b1414aa5a;hb=26f3a8879fb4b410ed8840c5a37397011c13bc1c;hpb=a0c41e7e23c9ff64031739e072f38e493bac8dca diff --git a/client/src/components/GameList.vue b/client/src/components/GameList.vue index d0ea2f01..62c916fa 100644 --- a/client/src/components/GameList.vue +++ b/client/src/components/GameList.vue @@ -7,7 +7,7 @@ div th {{ st.tr["White"] }} th {{ st.tr["Black"] }} th {{ st.tr["Time control"] }} - th(v-if="showResult") Result + th {{ st.tr["Result"] }} tbody tr(v-for="g in sortedGames" @click="$emit('show-game',g)" :class="{'my-turn': g.myTurn}") @@ -15,7 +15,7 @@ div td(data-label="White") {{ g.players[0].name || "@nonymous" }} td(data-label="Black") {{ g.players[1].name || "@nonymous" }} td(data-label="Time control") {{ g.timeControl }} - td(v-if="showResult" data-label="Result") {{ g.score }} + td(data-label="Result") {{ g.score }}