Fix games display on MyGames page
[vchess.git] / client / src / components / BaseGame.vue
index ccf9d73..cf4d762 100644 (file)
@@ -274,6 +274,9 @@ export default {
           fen = mv[mv.length-1].fen;
         }
         this.vr = new V(fen);
+        this.incheck = this.vr.getCheckSquares();
+        if (this.cursor >= 0) this.lastMove = this.moves[this.cursor];
+        else this.lastMove = null;
         document.getElementById("analyzeBtn").classList.remove("active");
       }
     },