From e01dff1a4661974349091ffa1a8596676d90a75c Mon Sep 17 00:00:00 2001
From: Benjamin Auder <benjamin.auder@somewhere>
Date: Thu, 6 Feb 2020 01:55:30 +0100
Subject: [PATCH] Graphical fix

---
 client/src/components/BaseGame.vue | 1 +
 1 file changed, 1 insertion(+)

diff --git a/client/src/components/BaseGame.vue b/client/src/components/BaseGame.vue
index 523e0ef6..55ed249f 100644
--- a/client/src/components/BaseGame.vue
+++ b/client/src/components/BaseGame.vue
@@ -223,6 +223,7 @@ export default {
       const L = this.moves.length;
       this.cursor = L-1;
       this.lastMove = (L > 0 ? this.moves[L-1]  : null);
+      this.incheck = [];
     },
     analyzePosition: function() {
       const newUrl = "/analyze/" + this.game.vname +
-- 
2.44.0