fix: refs #6943 prevent null #756

Merged
jsegarra merged 1 commits from 6943-warmfix-preventNull into test 2024-09-25 10:26:15 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ const customer = computed(() => state.get('customer'));
const bankEntityFormData = reactive({ const bankEntityFormData = reactive({
name: null, name: null,
bic: null, bic: null,
countryFk: customer.value.countryFk, countryFk: customer.value?.countryFk,
id: null, id: null,
}); });