From bd83a959f7895c0c032d41053f1659678a523a54 Mon Sep 17 00:00:00 2001 From: alexm Date: Wed, 14 Aug 2024 10:11:52 +0200 Subject: [PATCH] fix: customer credit opinion --- .../Customer/Card/CustomerCreditOpinion.vue | 50 +++++++------------ 1 file changed, 18 insertions(+), 32 deletions(-) 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(); -};