X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FMoveList.vue;h=1e19a2bdb77a70b2afd40c9fb97250bd400c1177;hp=91607c259eabb7f13552195e22920e862e4c1a03;hb=3837d4f7885a3c3cdb468da2f3fa3fa1e5a1415a;hpb=c547fbfbf65659b98f4f1bfba4718c685ec281f8 diff --git a/client/src/components/MoveList.vue b/client/src/components/MoveList.vue index 91607c25..1e19a2bd 100644 --- a/client/src/components/MoveList.vue +++ b/client/src/components/MoveList.vue @@ -25,6 +25,8 @@ export default { props: ["moves","cursor","score","message"], watch: { cursor: function(newValue) { + if (newValue < 0) + newValue = 0; //avoid rows[-1] --> error // $nextTick to wait for table > tr to be rendered this.$nextTick( () => { let rows = document.querySelectorAll('#movesList tr');