[PR #2610] [MERGED] [Mobile] Budget month notes and budget action menu #58056

Closed
opened 2026-05-06 22:23:00 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/2610
Author: @joel-jeremy
Created: 4/15/2024
Status: Merged
Merged: 4/18/2024
Merged by: @joel-jeremy

Base: masterHead: budget-month-menu


📝 Commits (10+)

📊 Changes

18 files changed (+736 additions, -136 deletions)

View changed files

📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-loads-the-budget-page-with-budgeted-amounts-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-loads-the-budget-page-with-budgeted-amounts-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/schedules.test.js-snapshots/Schedules-creates-a-new-schedule-posts-the-transaction-and-later-completes-it-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/src/components/Modals.tsx (+33 -5)
📝 packages/desktop-client/src/components/budget/index.tsx (+1 -8)
packages/desktop-client/src/components/budget/report/budgetsummary/BudgetMonthMenu.tsx (+79 -0)
📝 packages/desktop-client/src/components/budget/report/budgetsummary/BudgetSummary.tsx (+24 -27)
packages/desktop-client/src/components/budget/rollover/budgetsummary/BudgetMonthMenu.tsx (+87 -0)
📝 packages/desktop-client/src/components/budget/rollover/budgetsummary/BudgetSummary.tsx (+29 -36)
📝 packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx (+13 -18)
📝 packages/desktop-client/src/components/mobile/budget/index.tsx (+40 -19)
📝 packages/desktop-client/src/components/modals/BudgetPageMenuModal.tsx (+22 -19)
packages/desktop-client/src/components/modals/ReportBudgetMonthMenuModal.tsx (+192 -0)
packages/desktop-client/src/components/modals/RolloverBudgetMonthMenuModal.tsx (+196 -0)
📝 packages/desktop-client/src/style/styles.ts (+1 -0)
📝 packages/loot-core/src/client/state-types/modals.d.ts (+12 -2)
📝 packages/loot-core/src/shared/months.ts (+1 -2)
upcoming-release-notes/2610.md (+6 -0)

📄 Description

Make month notes and these action menus available in mobile:
image


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/actualbudget/actual/pull/2610 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 4/15/2024 **Status:** ✅ Merged **Merged:** 4/18/2024 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `budget-month-menu` --- ### 📝 Commits (10+) - [`d9c5c61`](https://github.com/actualbudget/actual/commit/d9c5c6169ead48885c2b67e3c8224af6e1bb33c1) Budget month menus - [`73fead1`](https://github.com/actualbudget/actual/commit/73fead18210943c8b21d5a03e690c7cce0e3b388) Release notes - [`5aa90aa`](https://github.com/actualbudget/actual/commit/5aa90aa69caa26caac9b03a421b8c154b1723bc5) Update vrt and fix lint - [`478e5ab`](https://github.com/actualbudget/actual/commit/478e5ab3a1666512eb26438ff33af97cb9a35639) Merge budget month modals into one modal - [`2a0399a`](https://github.com/actualbudget/actual/commit/2a0399a076dfc3df71ae984561e5f136df6ca412) Fix typecheck error - [`b20f123`](https://github.com/actualbudget/actual/commit/b20f123bae779529b2f3316262bdf1d3d7cefefe) VRT updates - [`670c581`](https://github.com/actualbudget/actual/commit/670c581e3d4444bb671006957135c37b145fad3e) Update modal triggers - [`bd2c25d`](https://github.com/actualbudget/actual/commit/bd2c25de7c16d3a0f7a61435ab2bfff5b90bfe0f) VRT updates - [`fd9a360`](https://github.com/actualbudget/actual/commit/fd9a360f24491d17b4156e78f4144f6e5e71d415) Adjust budget month modals size - [`645d4ed`](https://github.com/actualbudget/actual/commit/645d4ed316c9098bd827377a7f636d70b56c9e65) Fix lint error ### 📊 Changes **18 files changed** (+736 additions, -136 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-loads-the-budget-page-with-budgeted-amounts-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-loads-the-budget-page-with-budgeted-amounts-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/schedules.test.js-snapshots/Schedules-creates-a-new-schedule-posts-the-transaction-and-later-completes-it-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/src/components/Modals.tsx` (+33 -5) 📝 `packages/desktop-client/src/components/budget/index.tsx` (+1 -8) ➕ `packages/desktop-client/src/components/budget/report/budgetsummary/BudgetMonthMenu.tsx` (+79 -0) 📝 `packages/desktop-client/src/components/budget/report/budgetsummary/BudgetSummary.tsx` (+24 -27) ➕ `packages/desktop-client/src/components/budget/rollover/budgetsummary/BudgetMonthMenu.tsx` (+87 -0) 📝 `packages/desktop-client/src/components/budget/rollover/budgetsummary/BudgetSummary.tsx` (+29 -36) 📝 `packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx` (+13 -18) 📝 `packages/desktop-client/src/components/mobile/budget/index.tsx` (+40 -19) 📝 `packages/desktop-client/src/components/modals/BudgetPageMenuModal.tsx` (+22 -19) ➕ `packages/desktop-client/src/components/modals/ReportBudgetMonthMenuModal.tsx` (+192 -0) ➕ `packages/desktop-client/src/components/modals/RolloverBudgetMonthMenuModal.tsx` (+196 -0) 📝 `packages/desktop-client/src/style/styles.ts` (+1 -0) 📝 `packages/loot-core/src/client/state-types/modals.d.ts` (+12 -2) 📝 `packages/loot-core/src/shared/months.ts` (+1 -2) ➕ `upcoming-release-notes/2610.md` (+6 -0) </details> ### 📄 Description <!-- Thank you for submitting a pull request! Make sure to follow the instructions to write release notes for your PR — it should only take a minute or two: https://github.com/actualbudget/docs#writing-good-release-notes --> Make month notes and these action menus available in mobile: ![image](https://github.com/actualbudget/actual/assets/20313680/d9520016-7568-42af-a7da-8c0059a34c89) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-05-06 22:23:00 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#58056