mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-28 10:33:02 -05:00
Goals: Fix calculated fill when using multiple 'up to' statements in different priority levels (#1312)
This commit is contained in:
@@ -352,7 +352,7 @@ async function applyCategoryTemplate(
|
||||
} else {
|
||||
increment = limit;
|
||||
}
|
||||
if (to_budget + increment < budgetAvailable || !priority) {
|
||||
if (increment < budgetAvailable || !priority) {
|
||||
to_budget += increment;
|
||||
} else {
|
||||
if (budgetAvailable > 0) to_budget += budgetAvailable;
|
||||
|
||||
6
upcoming-release-notes/1312.md
Normal file
6
upcoming-release-notes/1312.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [shall0pass]
|
||||
---
|
||||
|
||||
Goals: Fix calculated fill when using multiple 'up to' statements in different priority levels
|
||||
Reference in New Issue
Block a user