From bd781b8f7659ff2ac12b2ef8a0ac92fdc3ef44a4 Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Sun, 5 Jul 2026 22:44:05 +0700 Subject: [PATCH] refactor: add newline before product names in RowShareAction component for better formatting of shareable output --- 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 79b63ea..4904cc1 100644 --- a/resources/js/components/button/RowShareAction.vue +++ b/resources/js/components/button/RowShareAction.vue @@ -44,7 +44,7 @@ const whatsappText = computed(() => { productNames.add(productName); }); - text += `Nama Produk: ${Array.from(productNames).join(', ')}\n`; + text += `\nNama Produk: ${Array.from(productNames).join(', ')}\n`; } text += `Total Hasil Cutting: ${c.total_result_pieces ?? 0} pcs\n`;