bugfix: fixed warning about authcode not being set when editing a player without authcode

This commit is contained in:
Settel 2022-04-03 14:46:12 +02:00
parent b1154f9567
commit 9bd56b9232

View File

@ -40,6 +40,9 @@ export default {
props: ['player'], props: ['player'],
data() { data() {
return { return {
name: '',
score: 0,
authcode: '',
...this.player, ...this.player,
} }
}, },