0
0
Fork 0

fix: refs #6943 prevent null

This commit is contained in:
Jorge Penadés 2024-09-25 12:23:41 +02:00
parent d85705bb39
commit d2996f0838
1 changed files with 1 additions and 1 deletions

View File

@ -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,
});