fix: update RowShareAction component to remove cutting result count from shareable output, simplifying the shared text format
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:01:27 +07:00
parent 366380ae67
commit 765b97519c

View File

@ -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`;
});
});
}