fix: include b.name in overdue query for tooltip display
This commit is contained in:
parent
779ace60dd
commit
5783f80e38
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue