From 765b97519c9d81b38a00d058ce51db4ab90bed6b Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Sun, 5 Jul 2026 22:01:27 +0700 Subject: [PATCH] fix: update RowShareAction component to remove cutting result count from shareable output, simplifying the shared text format --- resources/js/components/button/RowShareAction.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/components/button/RowShareAction.vue b/resources/js/components/button/RowShareAction.vue index b06d643..bc0117b 100644 --- a/resources/js/components/button/RowShareAction.vue +++ b/resources/js/components/button/RowShareAction.vue @@ -55,7 +55,7 @@ const whatsappText = computed(() => { text += `${index + 1}. ${group.name}\n`; group.items.forEach((item) => { - text += ` - ${item.product_variant?.name ?? '-'}: ${item.cutting_result} pcs\n`; + text += ` - ${item.product_variant?.name ?? '-'}\n`; }); }); }