Merge pull request 'fix: refs #6943 prevent null' (!756) from 6943-warmfix-preventNull into test
gitea/salix-front/pipeline/head This commit looks good Details

Reviewed-on: #756
Reviewed-by: Javier Segarra <jsegarra@verdnatura.es>
This commit is contained in:
Javier Segarra 2024-09-25 10:26:14 +00:00
commit 357f3ba308
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,
});