forked from verdnatura/salix-front
fix: refs #6943 prevent null
This commit is contained in:
parent
d85705bb39
commit
d2996f0838
|
@ -21,7 +21,7 @@ const customer = computed(() => state.get('customer'));
|
|||
const bankEntityFormData = reactive({
|
||||
name: null,
|
||||
bic: null,
|
||||
countryFk: customer.value.countryFk,
|
||||
countryFk: customer.value?.countryFk,
|
||||
id: null,
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue