mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 02:23:09 +02:00
fix(client): プラグインの設定がnullになることがある問題を修正
This commit is contained in:
parent
57203de4cb
commit
01e9b3c2f6
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ export default Vue.extend({
|
|||
|
||||
created() {
|
||||
for (const item in this.form) {
|
||||
Vue.set(this.values, item, this.form[item].default || null);
|
||||
Vue.set(this.values, item, this.form[item].hasOwnProperty('default') ? this.form[item].default : null);
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue