From d7559aca88591b9c89e7fb2dd64c6bdae20dc35e Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Thu, 26 Dec 2024 09:51:57 +0700 Subject: [PATCH] fix(regression): delete button in quotation --- src/components/05_quotation/QuotationCard.vue | 1 + src/components/05_quotation/TableQuotation.vue | 1 + 2 files changed, 2 insertions(+) diff --git a/src/components/05_quotation/QuotationCard.vue b/src/components/05_quotation/QuotationCard.vue index 604afb7d..1de73166 100644 --- a/src/components/05_quotation/QuotationCard.vue +++ b/src/components/05_quotation/QuotationCard.vue @@ -93,6 +93,7 @@ const rand = Math.random(); :idName="code" status="ACTIVE" hide-toggle + hide-delete :hide-view="hideKebabView" :hide-edit="hideKebabEdit" @view="$emit('view')" diff --git a/src/components/05_quotation/TableQuotation.vue b/src/components/05_quotation/TableQuotation.vue index 014f5bce..cf44a439 100644 --- a/src/components/05_quotation/TableQuotation.vue +++ b/src/components/05_quotation/TableQuotation.vue @@ -152,6 +152,7 @@ defineEmits<{ :idName="`btn-kebab-${props.row.firstName}`" status="'ACTIVE'" hide-toggle + hide-delete :hide-edit="hideEdit" @view="$emit('view', props.row)" @edit="$emit('edit', props.row)"