X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FMoveList.vue;h=e360cb0d45f5624ff6b936ced7772e93581a93aa;hb=bc1e1f2adf7de1efdf29933a666bcce4214e132f;hp=96d67049b64034178643e035ae0319d552a23158;hpb=57078452549f252460d45e91b84c7eea40dd3e9c;p=vchess.git diff --git a/client/src/components/MoveList.vue b/client/src/components/MoveList.vue index 96d67049..e360cb0d 100644 --- a/client/src/components/MoveList.vue +++ b/client/src/components/MoveList.vue @@ -53,14 +53,12 @@ div .td( :class="{'highlight-lm': cursor == moveIdx}" @click="() => gotoMove(moveIdx)" - ) - | {{ notation(moveIdx) }} + v-html="notation(moveIdx)") .td( v-if="moveIdx < moves.length-1" :class="{'highlight-lm': cursor == moveIdx+1}" @click="() => gotoMove(moveIdx+1)" - ) - | {{ notation(moveIdx + 1) }} + v-html="notation(moveIdx + 1)")