[PR #2551] [MERGED] Display balances in category autocomplete #82042

Closed
opened 2026-05-19 06:21:35 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

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

Base: masterHead: category-autocomplete-balances


📝 Commits (10+)

  • 209a03a Display balances in category autocomplete
  • c74b246 Release notes
  • 964aed7 Fix typecheck error
  • c2079bc Update balance colors
  • 778f715 Show category balances in mobile
  • c86e03a Patch unit tests
  • af4f713 Darket midnight theme autocomplete hover color
  • 893087b Category autocomplete split transaction highlight
  • a530c58 Update 2551.md
  • 81ee131 Extract modals from EditField

📊 Changes

17 files changed (+229 additions, -139 deletions)

View changed files

📝 packages/desktop-client/src/components/Modals.tsx (+3 -1)
📝 packages/desktop-client/src/components/accounts/Account.jsx (+59 -23)
📝 packages/desktop-client/src/components/autocomplete/CategoryAutocomplete.tsx (+54 -10)
📝 packages/desktop-client/src/components/budget/util.ts (+14 -4)
📝 packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx (+2 -0)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx (+5 -0)
📝 packages/desktop-client/src/components/modals/CategoryAutocompleteModal.tsx (+18 -9)
📝 packages/desktop-client/src/components/modals/CoverModal.tsx (+4 -1)
📝 packages/desktop-client/src/components/modals/EditField.jsx (+0 -50)
📝 packages/desktop-client/src/components/modals/RolloverBudgetSummaryModal.tsx (+1 -0)
📝 packages/desktop-client/src/components/modals/TransferModal.tsx (+3 -0)
📝 packages/desktop-client/src/components/transactions/TransactionsTable.jsx (+21 -13)
📝 packages/desktop-client/src/components/transactions/TransactionsTable.test.jsx (+30 -23)
📝 packages/desktop-client/src/style/themes/dark.ts (+1 -1)
📝 packages/desktop-client/src/style/themes/midnight.ts (+4 -4)
📝 packages/loot-core/src/client/state-types/modals.d.ts (+4 -0)
upcoming-release-notes/2551.md (+6 -0)

📄 Description

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


🔄 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/2551 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 4/4/2024 **Status:** ✅ Merged **Merged:** 4/16/2024 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `category-autocomplete-balances` --- ### 📝 Commits (10+) - [`209a03a`](https://github.com/actualbudget/actual/commit/209a03a7ba892be78b04628aee133be0d611f170) Display balances in category autocomplete - [`c74b246`](https://github.com/actualbudget/actual/commit/c74b246c29740a197942bdeb360a668b0886c6bb) Release notes - [`964aed7`](https://github.com/actualbudget/actual/commit/964aed72b222be0c6e36342bfc93cef16036b179) Fix typecheck error - [`c2079bc`](https://github.com/actualbudget/actual/commit/c2079bcfc35458819532d72c283f2ce65150a71e) Update balance colors - [`778f715`](https://github.com/actualbudget/actual/commit/778f715d36a9be5005ec02996ae3b190e637eae6) Show category balances in mobile - [`c86e03a`](https://github.com/actualbudget/actual/commit/c86e03ae3e1d999c00c8c6f9d43cf3a708bbc01b) Patch unit tests - [`af4f713`](https://github.com/actualbudget/actual/commit/af4f7131dbaf1fb2fdfffa7fecfea87868eb9a7f) Darket midnight theme autocomplete hover color - [`893087b`](https://github.com/actualbudget/actual/commit/893087b67f5cf4e6c6082b136513122dc620d2b9) Category autocomplete split transaction highlight - [`a530c58`](https://github.com/actualbudget/actual/commit/a530c5824e52d1a405d7f15215299705fd70d518) Update 2551.md - [`81ee131`](https://github.com/actualbudget/actual/commit/81ee131c60482b3cebf782d3c15efa0f4895ea69) Extract modals from EditField ### 📊 Changes **17 files changed** (+229 additions, -139 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/src/components/Modals.tsx` (+3 -1) 📝 `packages/desktop-client/src/components/accounts/Account.jsx` (+59 -23) 📝 `packages/desktop-client/src/components/autocomplete/CategoryAutocomplete.tsx` (+54 -10) 📝 `packages/desktop-client/src/components/budget/util.ts` (+14 -4) 📝 `packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx` (+2 -0) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx` (+5 -0) 📝 `packages/desktop-client/src/components/modals/CategoryAutocompleteModal.tsx` (+18 -9) 📝 `packages/desktop-client/src/components/modals/CoverModal.tsx` (+4 -1) 📝 `packages/desktop-client/src/components/modals/EditField.jsx` (+0 -50) 📝 `packages/desktop-client/src/components/modals/RolloverBudgetSummaryModal.tsx` (+1 -0) 📝 `packages/desktop-client/src/components/modals/TransferModal.tsx` (+3 -0) 📝 `packages/desktop-client/src/components/transactions/TransactionsTable.jsx` (+21 -13) 📝 `packages/desktop-client/src/components/transactions/TransactionsTable.test.jsx` (+30 -23) 📝 `packages/desktop-client/src/style/themes/dark.ts` (+1 -1) 📝 `packages/desktop-client/src/style/themes/midnight.ts` (+4 -4) 📝 `packages/loot-core/src/client/state-types/modals.d.ts` (+4 -0) ➕ `upcoming-release-notes/2551.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 --> Closes https://github.com/actualbudget/actual/issues/534 --- <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-19 06:21:35 -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#82042