From 131cd2de8c52d9d3c28ec8cd1088618e71fea8ef Mon Sep 17 00:00:00 2001 From: carlossa Date: Wed, 20 Nov 2024 09:53:52 +0100 Subject: [PATCH] fix: options --- src/components/CreateBankEntityForm.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/CreateBankEntityForm.vue b/src/components/CreateBankEntityForm.vue index cbd645056..2da3aa994 100644 --- a/src/components/CreateBankEntityForm.vue +++ b/src/components/CreateBankEntityForm.vue @@ -16,6 +16,10 @@ const state = useState(); const customer = computed(() => state.get('customer')); +const countriesFilter = { + fields: ['id', 'name', 'code'], +}; + const bankEntityFormData = reactive({ name: null, bic: null, @@ -46,6 +50,7 @@ onMounted(async () => { :title="t('title')" :subtitle="t('subtitle')" :form-initial-data="bankEntityFormData" + :filter="countriesFilter" @on-data-saved="onDataSaved" >