Move 'anonymousCount' which was computed to a method in Hall. Seems more accurate
[vchess.git] / client / src / components / BaseGame.vue
index 612ded4..4162dfc 100644 (file)
@@ -291,7 +291,7 @@ export default {
       if (this.game.mode == "analyze") {
         this.$emit(
           "fenchange",
-          this.lastMove ? this.lastMove.fen : this.game.fenStart
+          !!this.lastMove ? this.lastMove.fen : this.game.fenStart
         );
       }
     },