Add goal info to the prewarm list (#3514)

* add goals to prewarm list

* add to tracking

* note

* note

* lint
This commit is contained in:
youngcw
2024-09-27 17:36:41 -07:00
committed by GitHub
parent 6725d56bb8
commit 8f725c7911
2 changed files with 10 additions and 0 deletions

View File

@@ -218,6 +218,8 @@ handlers['envelope-budget-month'] = async function ({ month }) {
value(`sum-amount-${cat.id}`),
value(`leftover-${cat.id}`),
value(`carryover-${cat.id}`),
value(`goal-${cat.id}`),
value(`long-goal-${cat.id}`),
]);
}
}
@@ -257,6 +259,8 @@ handlers['tracking-budget-month'] = async function ({ month }) {
value(`budget-${cat.id}`),
value(`sum-amount-${cat.id}`),
value(`leftover-${cat.id}`),
value(`goal-${cat.id}`),
value(`long-goal-${cat.id}`),
]);
if (!group.is_income) {

View File

@@ -0,0 +1,6 @@
---
category: Maintenance
authors: [youngcw]
---
Add category goal info to the budget prewarm list for faster loading of indicator colors.