mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
fix: Tracking budget income budget fields missing in mobile view (#5251)
This commit is contained in:
committed by
GitHub
parent
e5c84d4ae0
commit
d9a171b249
@@ -48,22 +48,22 @@ export function BalanceCell({
|
||||
});
|
||||
|
||||
const goal =
|
||||
budgetType === 'report'
|
||||
budgetType === 'tracking'
|
||||
? trackingBudget.catGoal(category.id)
|
||||
: envelopeBudget.catGoal(category.id);
|
||||
|
||||
const longGoal =
|
||||
budgetType === 'report'
|
||||
budgetType === 'tracking'
|
||||
? trackingBudget.catLongGoal(category.id)
|
||||
: envelopeBudget.catLongGoal(category.id);
|
||||
|
||||
const budgeted =
|
||||
budgetType === 'report'
|
||||
budgetType === 'tracking'
|
||||
? trackingBudget.catBudgeted(category.id)
|
||||
: envelopeBudget.catBudgeted(category.id);
|
||||
|
||||
const carryover =
|
||||
budgetType === 'report'
|
||||
budgetType === 'tracking'
|
||||
? trackingBudget.catCarryover(category.id)
|
||||
: envelopeBudget.catCarryover(category.id);
|
||||
|
||||
|
||||
@@ -126,7 +126,7 @@ function IncomeCategoryCells({
|
||||
alignItems: 'center',
|
||||
}}
|
||||
>
|
||||
{budgetType === 'report' && (
|
||||
{budgetType === 'tracking' && (
|
||||
<View
|
||||
style={{
|
||||
width: columnWidth,
|
||||
@@ -143,6 +143,7 @@ function IncomeCategoryCells({
|
||||
/>
|
||||
</View>
|
||||
)}
|
||||
|
||||
<View
|
||||
style={{
|
||||
width: columnWidth,
|
||||
|
||||
6
upcoming-release-notes/5251.md
Normal file
6
upcoming-release-notes/5251.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [MatissJanis]
|
||||
---
|
||||
|
||||
Fix tracking budget income budget fields missing in mobile view.
|
||||
Reference in New Issue
Block a user