X-Git-Url: https://git.auder.net/variants/%24%7Bvname%7D/current/gitweb.css?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FMoveList.vue;h=ca538924290b548d9c88b3dab55f51e1de252724;hb=96e9585a39ca3ccef59c701b3f7ac3809692ca73;hp=c63f2cdfe733691496d10b2015488502c74835bd;hpb=5157ce0b8872417fbeecd736c9d1ae750b24acdc;p=vchess.git diff --git a/client/src/components/MoveList.vue b/client/src/components/MoveList.vue index c63f2cdf..ca538924 100644 --- a/client/src/components/MoveList.vue +++ b/client/src/components/MoveList.vue @@ -8,11 +8,11 @@ div tr(v-for="moveIdx in evenNumbers") td {{ firstNum + moveIdx / 2 + 1 }} td(:class="{'highlight-lm': cursor == moveIdx}" - data-label="White move" @click="() => gotoMove(moveIdx)") + @click="() => gotoMove(moveIdx)") | {{ moves[moveIdx].notation }} td(v-if="moveIdx < moves.length-1" :class="{'highlight-lm': cursor == moveIdx+1}" - data-label="Black move" @click="() => gotoMove(moveIdx+1)") + @click="() => gotoMove(moveIdx+1)") | {{ moves[moveIdx+1].notation }} // Else: just add an empty cell td(v-else)