Skip to content

Commit

Permalink
fix remainder goal (actualbudget#3822)
Browse files Browse the repository at this point in the history
  • Loading branch information
youngcw authored Nov 11, 2024
1 parent 57ac062 commit fa2830a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/loot-core/src/server/budget/categoryTemplate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export class CategoryTemplate {
private priorities: number[] = [];
private remainderWeight: number = 0;
private toBudgetAmount: number = 0; // amount that will be budgeted by the templates
private fullAmount: number = 0; // the full requested amount
private fullAmount: number = null; // the full requested amount, start null for remainder only cats
private isLongGoal: boolean = null; //defaulting the goals to null so templates can be unset
private goalAmount: number = null;
private fromLastMonth = 0; // leftover from last month
Expand Down

0 comments on commit fa2830a

Please sign in to comment.