0
0
Fork 0

Fix error that prevents rendering of the entire board

This commit is contained in:
Oliver-Akins 2021-01-07 16:11:48 -07:00
parent 80209790a8
commit 65776efd06

View file

@ -114,7 +114,7 @@ export default {
return this.$store.getters.otherTeamName.replace(/\s/g, `-`).toLowerCase(); return this.$store.getters.otherTeamName.replace(/\s/g, `-`).toLowerCase();
}, },
answers() { answers() {
return this.$store.state.answer; return this.$store.state.answers;
}, },
}, },
methods: { methods: {
@ -146,7 +146,7 @@ export default {
* value: string * value: string
* } * }
*/ */
this.$store.commit(`UpdateAnswer`, data); this.$store.commit(`updateAnswer`, data);
}, },
}, },
} }