X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FMoveList.vue;h=c63f2cdfe733691496d10b2015488502c74835bd;hp=1bb44367ce71ff33c88942c5bcce8643146b1487;hb=5157ce0b8872417fbeecd736c9d1ae750b24acdc;hpb=ddec77d8d3d304f61e86946ca73be6f23b11163e diff --git a/client/src/components/MoveList.vue b/client/src/components/MoveList.vue index 1bb44367..c63f2cdf 100644 --- a/client/src/components/MoveList.vue +++ b/client/src/components/MoveList.vue @@ -6,7 +6,7 @@ div table#movesList tbody tr(v-for="moveIdx in evenNumbers") - td {{ moveIdx / 2 + 1 }} + td {{ firstNum + moveIdx / 2 + 1 }} td(:class="{'highlight-lm': cursor == moveIdx}" data-label="White move" @click="() => gotoMove(moveIdx)") | {{ moves[moveIdx].notation }} @@ -22,7 +22,7 @@ div // Component for moves list on the right export default { name: 'my-move-list', - props: ["moves","cursor","score","message"], + props: ["moves","cursor","score","message","firstNum"], watch: { cursor: function(newValue) { if (newValue < 0)