From 3ff0d2139a5be06360a0f3348ae1bf7c34541288 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Thu, 20 Jun 2024 00:01:33 +0200 Subject: [PATCH] feat: call latestBuysFilter --- src/pages/Item/components/ItemProposal.vue | 15 +++++++----- .../Ticket/Negative/TicketLackDetail.vue | 23 ++++++++++++++++--- 2 files changed, 29 insertions(+), 9 deletions(-) diff --git a/src/pages/Item/components/ItemProposal.vue b/src/pages/Item/components/ItemProposal.vue index 7e8fcdf17..c7355f2f9 100644 --- a/src/pages/Item/components/ItemProposal.vue +++ b/src/pages/Item/components/ItemProposal.vue @@ -183,7 +183,7 @@ async function confirm() { // } // onDialogOK({ data: true }); emit('refreshData', { type: 'refresh', itemProposal: proposalSelected.value[0] }); - proposalSelected.value = null; + proposalSelected.value = []; popupProxyRef.value.hide(); } const { dialogRef, onDialogOK, onDialogCancel } = useDialogPluginComponent(); @@ -200,7 +200,7 @@ onUnmounted(() => {});