Skip to content

New budget page layout#330

Merged
jm6271 merged 16 commits intomasterfrom
feature/new-budget-edit-system
Apr 4, 2026
Merged

New budget page layout#330
jm6271 merged 16 commits intomasterfrom
feature/new-budget-edit-system

Conversation

@jm6271
Copy link
Copy Markdown
Owner

@jm6271 jm6271 commented Apr 2, 2026

The budget page layout has been redesigned. The list of budgets on the left side has been removed. Now budget switching is done by clicking the budget month in the header, which opens a popup where a month can be selected. Now only the budget items scroll, instead of the whole page. The header is sticky, so that the budget month and the amount left to budget are always shown, and only the budget items are scrolled.

@jm6271 jm6271 added enhancement New feature or request visual change Change to the GUI labels Apr 2, 2026
@jm6271
Copy link
Copy Markdown
Owner Author

jm6271 commented Apr 3, 2026

@codex review

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: f5c4e5c222

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +858 to +859
mostRecentDate = query.Where(p => p.BudgetDate.Month < SelectedBudgetMonth.Month && p.BudgetDate.Year <= SelectedBudgetMonth.Year)
.OrderByDescending(p => p.BudgetDate)
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Compare full dates when finding prior budget to copy

The predicate here decomposes dates into Month and Year (Month < selectedMonth && Year <= selectedYear), which breaks across year boundaries. For example, when creating January 2026 with an existing December 2025 budget, December is incorrectly excluded (12 < 1 is false), so the new budget is created without copying the latest prior budget data. This also affects the “copy from” hint path that uses the same predicate, so users can be told there is nothing to copy when there actually is.

Useful? React with 👍 / 👎.

@jm6271 jm6271 merged commit f444c84 into master Apr 4, 2026
4 checks passed
@jm6271 jm6271 deleted the feature/new-budget-edit-system branch April 4, 2026 00:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request visual change Change to the GUI

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant