[PR #2491] [MERGED] [Mobile] Budget menu modals #11385

Closed
opened 2026-04-10 20:59:27 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/2491
Author: @joel-jeremy
Created: 3/22/2024
Status: Merged
Merged: 4/11/2024
Merged by: @joel-jeremy

Base: masterHead: budget-add-category-or-group-menu


📝 Commits (10+)

📊 Changes

21 files changed (+535 additions, -536 deletions)

View changed files

📝 packages/desktop-client/e2e/accounts.test.js-snapshots/Accounts-closes-an-account-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/accounts.test.js-snapshots/Accounts-closes-an-account-2-chromium-linux.png (+0 -0)
📝 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/src/components/Modals.tsx (+22 -5)
📝 packages/desktop-client/src/components/common/Menu.tsx (+2 -8)
📝 packages/desktop-client/src/components/common/Modal.tsx (+131 -96)
📝 packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx (+63 -207)
📝 packages/desktop-client/src/components/mobile/budget/index.tsx (+33 -5)
📝 packages/desktop-client/src/components/modals/AccountMenuModal.tsx (+43 -56)
packages/desktop-client/src/components/modals/BudgetMenuModal.tsx (+105 -0)
📝 packages/desktop-client/src/components/modals/CategoryGroupMenuModal.tsx (+45 -65)
📝 packages/desktop-client/src/components/modals/CategoryMenuModal.tsx (+39 -52)
📝 packages/desktop-client/src/components/modals/ReportBalanceMenuModal.tsx (+5 -8)
📝 packages/desktop-client/src/components/modals/RolloverBalanceMenuModal.tsx (+7 -10)
📝 packages/desktop-client/src/components/modals/RolloverToBudgetMenuModal.tsx (+6 -9)
📝 packages/desktop-client/src/components/modals/ScheduledTransactionMenuModal.tsx (+6 -9)
📝 packages/desktop-client/src/components/modals/SingleInputModal.tsx (+2 -2)
📝 packages/desktop-client/src/components/modals/SwitchBudgetTypeModal.tsx (+15 -4)
📝 packages/loot-core/src/client/state-types/modals.d.ts (+5 -0)

...and 1 more files

📄 Description

  • Removed Add group button and replaced with a + sign on page header
  • Added a menu on the left side of the page header for more budget menus
    • (Will add budget actions e.g. goal template menus next)

🔄 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/2491 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 3/22/2024 **Status:** ✅ Merged **Merged:** 4/11/2024 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `budget-add-category-or-group-menu` --- ### 📝 Commits (10+) - [`f0aec96`](https://github.com/actualbudget/actual/commit/f0aec965a024553715c97b019f9f210f8e7bf5c7) Update autocomplete types - [`c5f09e3`](https://github.com/actualbudget/actual/commit/c5f09e3b0da9f743214c024af0c1ed794f4518de) Remote optional type - [`4674461`](https://github.com/actualbudget/actual/commit/46744615b05a42eab8e6021ab71b9c0977cb9719) Improve SingleInputModal - [`284ef73`](https://github.com/actualbudget/actual/commit/284ef733c408d5893d54f6167b294f30d1a36252) Fix lint error - [`16e9cf3`](https://github.com/actualbudget/actual/commit/16e9cf3ba9e891d269233de3e6af478e8e2ecf02) Mobile budget page modals - [`53e4d5c`](https://github.com/actualbudget/actual/commit/53e4d5c20817357b039c94353ea8c0ef1974f9a0) Release notes - [`04d3c1a`](https://github.com/actualbudget/actual/commit/04d3c1a49e28cb6ec1be0f6da8b04dba762e6c54) Fix typecheck / lint errors - [`a9d9e85`](https://github.com/actualbudget/actual/commit/a9d9e85185058a9a5c1085abaa890d8a5f3830df) Fix typecheck errors - [`b8343f7`](https://github.com/actualbudget/actual/commit/b8343f7bc6a141eb78a740e9f60c8ba64d11869a) Fix typecheck error - [`c6d2227`](https://github.com/actualbudget/actual/commit/c6d2227825aef0b1ee7fa37f6fb95e8d695b4cb0) Modal logo ### 📊 Changes **21 files changed** (+535 additions, -536 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/e2e/accounts.test.js-snapshots/Accounts-closes-an-account-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/accounts.test.js-snapshots/Accounts-closes-an-account-2-chromium-linux.png` (+0 -0) 📝 `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/src/components/Modals.tsx` (+22 -5) 📝 `packages/desktop-client/src/components/common/Menu.tsx` (+2 -8) 📝 `packages/desktop-client/src/components/common/Modal.tsx` (+131 -96) 📝 `packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx` (+63 -207) 📝 `packages/desktop-client/src/components/mobile/budget/index.tsx` (+33 -5) 📝 `packages/desktop-client/src/components/modals/AccountMenuModal.tsx` (+43 -56) ➕ `packages/desktop-client/src/components/modals/BudgetMenuModal.tsx` (+105 -0) 📝 `packages/desktop-client/src/components/modals/CategoryGroupMenuModal.tsx` (+45 -65) 📝 `packages/desktop-client/src/components/modals/CategoryMenuModal.tsx` (+39 -52) 📝 `packages/desktop-client/src/components/modals/ReportBalanceMenuModal.tsx` (+5 -8) 📝 `packages/desktop-client/src/components/modals/RolloverBalanceMenuModal.tsx` (+7 -10) 📝 `packages/desktop-client/src/components/modals/RolloverToBudgetMenuModal.tsx` (+6 -9) 📝 `packages/desktop-client/src/components/modals/ScheduledTransactionMenuModal.tsx` (+6 -9) 📝 `packages/desktop-client/src/components/modals/SingleInputModal.tsx` (+2 -2) 📝 `packages/desktop-client/src/components/modals/SwitchBudgetTypeModal.tsx` (+15 -4) 📝 `packages/loot-core/src/client/state-types/modals.d.ts` (+5 -0) _...and 1 more files_ </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 --> - Removed Add group button and replaced with a + sign on page header - Added a menu on the left side of the page header for more budget menus - (Will add budget actions e.g. goal template menus next) --- <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-04-10 20:59:27 -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#11385