From 78c23cd6e4717d6d07c84177b515c6e03717da7e Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Thu, 19 Mar 2020 21:02:58 +0100 Subject: [PATCH] Fix introduced bug when preventing to move when choices are shown --- client/src/components/Board.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Board.vue b/client/src/components/Board.vue index 447040f9..921a5998 100644 --- a/client/src/components/Board.vue +++ b/client/src/components/Board.vue @@ -317,8 +317,8 @@ export default { // Force a delay between move is shown and clicked // (otherwise a "double-click" bug might occur) if (Date.now() - this.clickTime < 200) return; - this.play(m); this.choices = []; + this.play(m); }; const onClick = this.mobileBrowser -- 2.44.0