Fix error that prevents rendering of the entire board
This commit is contained in:
parent
80209790a8
commit
65776efd06
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue