[PR #2531] [MERGED] [Mobile] Category activity/transactions page #11406

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

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/2531
Author: @joel-jeremy
Created: 3/31/2024
Status: Merged
Merged: 4/13/2024
Merged by: @joel-jeremy

Base: masterHead: category-transactions


📝 Commits (10+)

📊 Changes

24 files changed (+861 additions, -650 deletions)

View changed files

📝 packages/desktop-client/e2e/page-models/mobile-account-page.js (+1 -1)
📝 packages/desktop-client/src/components/App.tsx (+1 -1)
📝 packages/desktop-client/src/components/FinancesApp.tsx (+4 -11)
📝 packages/desktop-client/src/components/accounts/Account.jsx (+8 -34)
📝 packages/desktop-client/src/components/common/Link.tsx (+3 -1)
📝 packages/desktop-client/src/components/mobile/MobileBackButton.tsx (+6 -6)
📝 packages/desktop-client/src/components/mobile/MobileWebMessage.tsx (+7 -8)
📝 packages/desktop-client/src/components/mobile/accounts/Account.jsx (+16 -236)
packages/desktop-client/src/components/mobile/accounts/AccountDetails.jsx (+0 -297)
packages/desktop-client/src/components/mobile/accounts/AccountTransactions.jsx (+261 -0)
📝 packages/desktop-client/src/components/mobile/accounts/Accounts.jsx (+1 -14)
📝 packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx (+16 -2)
packages/desktop-client/src/components/mobile/budget/Category.tsx (+38 -0)
packages/desktop-client/src/components/mobile/budget/CategoryTransactions.jsx (+156 -0)
packages/desktop-client/src/components/mobile/transactions/AddTransactionButton.tsx (+40 -0)
📝 packages/desktop-client/src/components/mobile/transactions/ListBox.jsx (+1 -1)
📝 packages/desktop-client/src/components/mobile/transactions/Transaction.jsx (+22 -12)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx (+18 -10)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionList.jsx (+2 -12)
packages/desktop-client/src/components/mobile/transactions/TransactionListWithBalances.jsx (+165 -0)

...and 4 more files

📄 Description

Closes https://github.com/actualbudget/actual/issues/2018


🔄 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/2531 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 3/31/2024 **Status:** ✅ Merged **Merged:** 4/13/2024 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `category-transactions` --- ### 📝 Commits (10+) - [`046ade8`](https://github.com/actualbudget/actual/commit/046ade8ea71ff492e3ebdbe8ff5f1ef723b2b4ce) Mobile category transactions - [`fa99f57`](https://github.com/actualbudget/actual/commit/fa99f57d9bc3f170fb27d78377040d7f41852fb5) Release notes - [`de0e317`](https://github.com/actualbudget/actual/commit/de0e317076f5ad5b4f389734558150cb3880b37f) Fix typo - [`f6afdee`](https://github.com/actualbudget/actual/commit/f6afdee3642f553057704ba85b0dfd196a44ec6e) Fix typecheck error - [`da7fe00`](https://github.com/actualbudget/actual/commit/da7fe00ce70a3802b26a090be7d3ba8f3a35711c) Handle null location state - [`2fe2b54`](https://github.com/actualbudget/actual/commit/2fe2b543542e50bcd3f875f6a050c39572460a0e) VRT - [`5669c1f`](https://github.com/actualbudget/actual/commit/5669c1f533d09d413447a95fc1420326145decf7) Fix account search - [`de7661f`](https://github.com/actualbudget/actual/commit/de7661fbf577a2c8d4faeb9198105fa0b1de5312) Update test - [`becfd94`](https://github.com/actualbudget/actual/commit/becfd945f23b65851de781c0d71a236bfd4a501c) Search placeholder - [`bd35e8f`](https://github.com/actualbudget/actual/commit/bd35e8ffe6eeee11414d0fb807bb4afd484bc573) vrt ### 📊 Changes **24 files changed** (+861 additions, -650 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/e2e/page-models/mobile-account-page.js` (+1 -1) 📝 `packages/desktop-client/src/components/App.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/FinancesApp.tsx` (+4 -11) 📝 `packages/desktop-client/src/components/accounts/Account.jsx` (+8 -34) 📝 `packages/desktop-client/src/components/common/Link.tsx` (+3 -1) 📝 `packages/desktop-client/src/components/mobile/MobileBackButton.tsx` (+6 -6) 📝 `packages/desktop-client/src/components/mobile/MobileWebMessage.tsx` (+7 -8) 📝 `packages/desktop-client/src/components/mobile/accounts/Account.jsx` (+16 -236) ➖ `packages/desktop-client/src/components/mobile/accounts/AccountDetails.jsx` (+0 -297) ➕ `packages/desktop-client/src/components/mobile/accounts/AccountTransactions.jsx` (+261 -0) 📝 `packages/desktop-client/src/components/mobile/accounts/Accounts.jsx` (+1 -14) 📝 `packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx` (+16 -2) ➕ `packages/desktop-client/src/components/mobile/budget/Category.tsx` (+38 -0) ➕ `packages/desktop-client/src/components/mobile/budget/CategoryTransactions.jsx` (+156 -0) ➕ `packages/desktop-client/src/components/mobile/transactions/AddTransactionButton.tsx` (+40 -0) 📝 `packages/desktop-client/src/components/mobile/transactions/ListBox.jsx` (+1 -1) 📝 `packages/desktop-client/src/components/mobile/transactions/Transaction.jsx` (+22 -12) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx` (+18 -10) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionList.jsx` (+2 -12) ➕ `packages/desktop-client/src/components/mobile/transactions/TransactionListWithBalances.jsx` (+165 -0) _...and 4 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 --> Closes https://github.com/actualbudget/actual/issues/2018 --- <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:56 -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#11406