fix: include b.name in overdue query for tooltip display

This commit is contained in:
null 2026-06-04 01:16:48 -05:00
parent 779ace60dd
commit 5783f80e38
1 changed files with 1 additions and 1 deletions

View File

@ -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,