From 5783f80e38f3c0d9336dab5caf1951789c318fd7 Mon Sep 17 00:00:00 2001 From: null Date: Thu, 4 Jun 2026 01:16:48 -0500 Subject: [PATCH] fix: include b.name in overdue query for tooltip display --- services/trackerService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/trackerService.js b/services/trackerService.js index b9ef7a8..a853a8b 100644 --- a/services/trackerService.js +++ b/services/trackerService.js @@ -522,7 +522,7 @@ function getOverdueCount(userId, now = new Date()) { const rangeEnd = `${year}-${monthStr}-${String(lastDay).padStart(2, '0')}`; const bills = db.prepare(` - SELECT b.id, b.due_day, b.override_due_date, b.expected_amount, + SELECT b.id, b.name, b.due_day, b.override_due_date, b.expected_amount, b.billing_cycle, b.cycle_type, b.cycle_day, b.autopay_enabled, b.autodraft_status, mbs.actual_amount, mbs.is_skipped, mbs.snoozed_until,