refactor: adjust formatting in RowShareAction component for improved readability of shareable output
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (8.3) (push) Waiting to run
tests / ci (8.4) (push) Waiting to run
tests / ci (8.5) (push) Waiting to run

This commit is contained in:
Yoga Pangestu 2026-07-05 22:41:39 +07:00
parent 65c67f0bb9
commit 334bcdec4a

View File

@ -44,10 +44,10 @@ const whatsappText = computed(() => {
productNames.add(productName);
});
text += `\nNama Produk: ${Array.from(productNames).join(', ')}\n`;
text += `Nama Produk: ${Array.from(productNames).join(', ')}\n`;
}
text += `\nTotal Hasil Cutting: ${c.total_result_pieces ?? 0} pcs\n`;
text += `Total Hasil Cutting: ${c.total_result_pieces ?? 0} pcs\n`;
text += `\nLihat detail lengkap:\n${shareLink.value}`;
return text;