X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FMoveList.vue;h=290897c0962177bfcd6ff9f2599773c88f989027;hb=75f009f4269247957f760da4613420aba0201c8f;hp=96d67049b64034178643e035ae0319d552a23158;hpb=57078452549f252460d45e91b84c7eea40dd3e9c;p=vchess.git diff --git a/client/src/components/MoveList.vue b/client/src/components/MoveList.vue index 96d67049..290897c0 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)")