diff --git a/src/pages/Customer/Card/CustomerCreditOpinion.vue b/src/pages/Customer/Card/CustomerCreditOpinion.vue index 2b85cbd7d..c164ab450 100644 --- a/src/pages/Customer/Card/CustomerCreditOpinion.vue +++ b/src/pages/Customer/Card/CustomerCreditOpinion.vue @@ -16,7 +16,7 @@ import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.v const { t } = useI18n(); const route = useRoute(); -const clientInformasRef = ref(null); +const clientInformasRef = ref(); const rows = ref([]); const filter = { @@ -71,45 +71,35 @@ watch( clientInformasRef.value?.fetch(); } ); - -const onDataSaved = () => { - clientInformasRef.value?.fetch(); -};