diff --git a/src/components/03_customer-management/FormEmployeeVisa.vue b/src/components/03_customer-management/FormEmployeeVisa.vue index d68637fb..0efe423e 100644 --- a/src/components/03_customer-management/FormEmployeeVisa.vue +++ b/src/components/03_customer-management/FormEmployeeVisa.vue @@ -37,21 +37,15 @@ const visaStayUntilDate = defineModel( const tm6Number = defineModel('tm6Number'); const entryDate = defineModel('entryDate'); -withDefaults( - defineProps<{ - title?: string; - dense?: boolean; - outlined?: boolean; - readonly?: boolean; - separator?: boolean; - typeCustomer?: string; - prefixId: string; - showBtnSave: boolean; - }>(), - { - showBtnSave: false, - }, -); +defineProps<{ + title?: string; + dense?: boolean; + outlined?: boolean; + readonly?: boolean; + separator?: boolean; + typeCustomer?: string; + prefixId: string; +}>(); async function fetchProvince() { const result = await adrressStore.fetchProvince(); @@ -457,19 +451,6 @@ watch( - -
- -