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
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:
commit
357f3ba308
|
@ -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,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue