From 851ca7a0378f7990d9d2e4e7cfa3dab21620fca7 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Tue, 24 Feb 2026 17:46:27 -0600 Subject: [PATCH] open, sent status --- public/invoice-view.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/invoice-view.js b/public/invoice-view.js index dcc84ce..f7fe985 100644 --- a/public/invoice-view.js +++ b/public/invoice-view.js @@ -239,14 +239,14 @@ function renderInvoiceRow(invoice) { paidBtn = ``; } - // Send status button — only for QBO invoices + // Send status — only for QBO invoices not yet paid/partial let sendBtn = ''; - if (hasQbo && !paid) { + if (hasQbo && !paid && !partial) { const isSent = invoice.email_status === 'sent'; if (isSent) { - sendBtn = `✉️ Sent`; + sendBtn = `Sent`; } else { - sendBtn = ``; + sendBtn = ``; } }