From db464aa8088724e9b981eb27c6d75311d8ce3f26 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Fri, 1 Jan 2021 20:17:41 -0700 Subject: [PATCH] Use correct game code rather than "undefined" --- web/src/views/CreateJoin.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/views/CreateJoin.vue b/web/src/views/CreateJoin.vue index 95da088..a49cf1c 100644 --- a/web/src/views/CreateJoin.vue +++ b/web/src/views/CreateJoin.vue @@ -64,7 +64,7 @@ export default { return; }; - history.replaceState(null, ``, `?game=${data.game_code}`); + history.replaceState(null, ``, `?game=${this.game_code}`); // Save the data in the store this.$store.commit(`playerList`, data.players);