From 8f27b6b932689562877c572d01052638d5a4e5f0 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Thu, 10 Dec 2020 10:37:50 -0700 Subject: [PATCH] Adjust ordering of attributes and include a do not edit below comment. --- web/src/store/index.js | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/web/src/store/index.js b/web/src/store/index.js index 76d4b9e..95742ad 100644 --- a/web/src/store/index.js +++ b/web/src/store/index.js @@ -5,12 +5,9 @@ Vue.use(Vuex) export default new Vuex.Store({ state: { - view: `lobby`, - role: null, - name: ``, - id: null, team_1: { name: `Sun`, + icon: ``, moons: { 1: 0, 2: 0, 3: 0, 4: 0, @@ -20,6 +17,7 @@ export default new Vuex.Store({ }, team_2: { name: `Moon`, + icon: ``, moons: { 1: 0, 2: 0, 3: 0, 4: 0, @@ -29,6 +27,13 @@ export default new Vuex.Store({ }, writer_name: `Spirit`, guesser_name: `Medium`, + +//===========================================================================// + // DO NOT EDIT ANYTHING BELOW THIS COMMENT + view: `lobby`, + role: null, + name: ``, + id: null, }, mutations: { },