[PR #3374] [MERGED] [Mobile] Fix #3214 - Pull down to refresh triggering clicks on budget cells #4818

Closed
opened 2026-02-28 21:01:44 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/3374
Author: @joel-jeremy
Created: 9/5/2024
Status: Merged
Merged: 9/18/2024
Merged by: @joel-jeremy

Base: masterHead: fix-3214


📝 Commits (10+)

📊 Changes

19 files changed (+866 additions, -859 deletions)

View changed files

📝 packages/desktop-client/e2e/budget.test.js-snapshots/Budget-transfer-funds-to-another-category-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/budget.test.js-snapshots/Budget-transfer-funds-to-another-category-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/budget.test.js-snapshots/Budget-transfer-funds-to-another-category-3-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/e2e/mobile.test.js-snapshots/Mobile-loads-the-budget-page-with-budgeted-amounts-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/src/components/accounts/Balance.jsx (+20 -17)
📝 packages/desktop-client/src/components/budget/BalanceWithCarryover.tsx (+123 -110)
📝 packages/desktop-client/src/components/budget/report/ReportComponents.tsx (+33 -34)
📝 packages/desktop-client/src/components/budget/report/budgetsummary/BudgetTotal.tsx (+4 -6)
📝 packages/desktop-client/src/components/budget/rollover/RolloverComponents.tsx (+42 -31)
📝 packages/desktop-client/src/components/budget/rollover/budgetsummary/TotalsList.tsx (+41 -23)
📝 packages/desktop-client/src/components/mobile/accounts/Accounts.jsx (+19 -13)
📝 packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx (+434 -527)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionListWithBalances.jsx (+43 -34)
📝 packages/desktop-client/src/components/modals/ReportBalanceMenuModal.tsx (+19 -12)
📝 packages/desktop-client/src/components/modals/RolloverBalanceMenuModal.tsx (+19 -12)
📝 packages/desktop-client/src/components/spreadsheet/CellValue.tsx (+63 -40)
upcoming-release-notes/3374.md (+6 -0)

📄 Description

Resolves #3214

The CellValue component has been refactored to be more composable. To fix the cell value components in the mobile budget table, I had to update them to use the new react aria Button - this looks to have fixed the issue.

Not sure what are causing some of VRT screenshots to change but it looks like the color changed on them.


🔄 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/3374 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 9/5/2024 **Status:** ✅ Merged **Merged:** 9/18/2024 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `fix-3214` --- ### 📝 Commits (10+) - [`a3698c0`](https://github.com/actualbudget/actual/commit/a3698c0823e3b1a3b01f143b6f6c676fedb1df82) Fix #3214 - [`9c3b0b1`](https://github.com/actualbudget/actual/commit/9c3b0b144a0b3d12eb265a88857b616ba6e15f32) Fix rollover indicator - [`927c5ce`](https://github.com/actualbudget/actual/commit/927c5ce1e73bc3e40f94fcdd0578d983d6200713) VRT - [`ee97b68`](https://github.com/actualbudget/actual/commit/ee97b68404496b3ed98ec2f91d556043477473a9) Fix typecheck error - [`c6efa84`](https://github.com/actualbudget/actual/commit/c6efa84cdce7a5403c528e74954ad318200f702e) VRT - [`d831b8e`](https://github.com/actualbudget/actual/commit/d831b8e75ee9ab75f4e41734e7cd1e0803097d13) Release notes - [`010b0a1`](https://github.com/actualbudget/actual/commit/010b0a1056170a22d047a44ec6058f19613e3ba5) VRT - [`3de4014`](https://github.com/actualbudget/actual/commit/3de4014f0d11ab49ad499c40e4f4b23b2acd4a31) Update style - [`44bf186`](https://github.com/actualbudget/actual/commit/44bf1866b9154c9725aa6fa49d66ace86c84af29) Fix budgeted - [`f317214`](https://github.com/actualbudget/actual/commit/f317214eb70e790e7174c4a796f51214b0d89335) VRT ### 📊 Changes **19 files changed** (+866 additions, -859 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/e2e/budget.test.js-snapshots/Budget-transfer-funds-to-another-category-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/budget.test.js-snapshots/Budget-transfer-funds-to-another-category-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/budget.test.js-snapshots/Budget-transfer-funds-to-another-category-3-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/e2e/mobile.test.js-snapshots/Mobile-loads-the-budget-page-with-budgeted-amounts-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/src/components/accounts/Balance.jsx` (+20 -17) 📝 `packages/desktop-client/src/components/budget/BalanceWithCarryover.tsx` (+123 -110) 📝 `packages/desktop-client/src/components/budget/report/ReportComponents.tsx` (+33 -34) 📝 `packages/desktop-client/src/components/budget/report/budgetsummary/BudgetTotal.tsx` (+4 -6) 📝 `packages/desktop-client/src/components/budget/rollover/RolloverComponents.tsx` (+42 -31) 📝 `packages/desktop-client/src/components/budget/rollover/budgetsummary/TotalsList.tsx` (+41 -23) 📝 `packages/desktop-client/src/components/mobile/accounts/Accounts.jsx` (+19 -13) 📝 `packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx` (+434 -527) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionListWithBalances.jsx` (+43 -34) 📝 `packages/desktop-client/src/components/modals/ReportBalanceMenuModal.tsx` (+19 -12) 📝 `packages/desktop-client/src/components/modals/RolloverBalanceMenuModal.tsx` (+19 -12) 📝 `packages/desktop-client/src/components/spreadsheet/CellValue.tsx` (+63 -40) ➕ `upcoming-release-notes/3374.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 --> Resolves #3214 The `CellValue` component has been refactored to be more composable. To fix the cell value components in the mobile budget table, I had to update them to use the new react aria Button - this looks to have fixed the issue. Not sure what are causing some of VRT screenshots to change but it looks like the color changed on them. --- <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-02-28 21:01:44 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#4818