X-Git-Url: https://git.auder.net/pieces/Cwda/c_white_queen.svg?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FGameList.vue;h=243593025e9ff6c5028e6a0e7adc1bcd4521434b;hb=714680114508183fba2c07231dbe8f90b5631b81;hp=d0ea2f01efdd852219fa7c17f69c0b5b1414aa5a;hpb=5fd5fb22de02ed6c585e86a1c3dda50ff6071d2f;p=vchess.git diff --git a/client/src/components/GameList.vue b/client/src/components/GameList.vue index d0ea2f01..24359302 100644 --- a/client/src/components/GameList.vue +++ b/client/src/components/GameList.vue @@ -6,16 +6,16 @@ div th {{ st.tr["Variant"] }} th {{ st.tr["White"] }} th {{ st.tr["Black"] }} - th {{ st.tr["Time control"] }} - th(v-if="showResult") Result + th {{ st.tr["Cadence"] }} + th {{ st.tr["Result"] }} tbody tr(v-for="g in sortedGames" @click="$emit('show-game',g)" :class="{'my-turn': g.myTurn}") td(data-label="Variant") {{ g.vname }} 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="Time control") {{ g.cadence }} + td(data-label="Result") {{ g.score }}