Fixed settings array initial value (#13755)

This commit is contained in:
Jellyfrog
2022-02-07 23:18:42 +01:00
committed by GitHub
parent b2f8a53cab
commit f8fba91b83

View File

@@ -62,7 +62,7 @@
},
data() {
return {
localList: this.value,
localList: this.value ?? [],
newItem: ""
}
},