Merge branch 'main' into refactoring

This commit is contained in:
Andreas Knuth 2026-03-04 16:05:02 -06:00
commit 27ecafea5f
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ function renderInvoiceRow(invoice) {
// Mark Sent button (right side) — only when open, not paid/partial
let sendBtn = '';
if (hasQbo && !paid && !partial && !overdue && invoice.email_status !== 'sent') {
if (hasQbo && !paid && !overdue && invoice.email_status !== 'sent') {
sendBtn = `<button onclick="window.invoiceView.setEmailStatus(${invoice.id}, 'sent')" class="text-indigo-600 hover:text-indigo-800 text-xs font-medium" title="Mark as sent to customer">📤 Mark Sent</button>`;
}