[PR #3622] [MERGED] Use a toggle on mobile transaction's Cleared flag #19325

Closed
opened 2026-04-14 21:04:07 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/3622
Author: @joel-jeremy
Created: 10/10/2024
Status: Merged
Merged: 10/13/2024
Merged by: @joel-jeremy

Base: masterHead: mobile-transaction-edit-cleared-toggle


📝 Commits (7)

📊 Changes

18 files changed (+254 additions, -224 deletions)

View changed files

📝 packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-from-accounts-id-page-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-from-accounts-id-page-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-from-accounts-id-page-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-via-footer-button-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-via-footer-button-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-via-footer-button-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-via-footer-button-4-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-via-footer-button-5-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-via-footer-button-6-chromium-linux.png (+0 -0)
📝 packages/desktop-client/src/components/common/Menu.tsx (+10 -5)
📝 packages/desktop-client/src/components/common/Toggle.tsx (+57 -42)
📝 packages/desktop-client/src/components/mobile/MobileForms.tsx (+29 -44)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx (+142 -132)
📝 packages/desktop-client/src/style/themes/dark.ts (+2 -0)
📝 packages/desktop-client/src/style/themes/development.ts (+3 -0)
📝 packages/desktop-client/src/style/themes/light.ts (+2 -0)
📝 packages/desktop-client/src/style/themes/midnight.ts (+3 -1)
upcoming-release-notes/3622.md (+6 -0)

📄 Description


🔄 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/3622 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 10/10/2024 **Status:** ✅ Merged **Merged:** 10/13/2024 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `mobile-transaction-edit-cleared-toggle` --- ### 📝 Commits (7) - [`e7a6e92`](https://github.com/actualbudget/actual/commit/e7a6e92f984ed04fd749f3670691cca27d3a07e7) Use a toggle on mobile transaction's Cleared flag - [`cf4e993`](https://github.com/actualbudget/actual/commit/cf4e993f147534437b4aa092013dda45ecf236ff) Release notes - [`84fb645`](https://github.com/actualbudget/actual/commit/84fb6454874a2a340ec5a6758e6a3e1f8cc58de7) Cleanup - [`a296fe5`](https://github.com/actualbudget/actual/commit/a296fe5c3d72883b268a7f3ab76156201e82b3c8) VRT - [`87f6065`](https://github.com/actualbudget/actual/commit/87f60654d4577defee174a9bd45196d8ee3a4992) Cleanup - [`a5bc59a`](https://github.com/actualbudget/actual/commit/a5bc59a3da5f947ce3b007b869243f36af070903) Remove glamor import - [`8e66005`](https://github.com/actualbudget/actual/commit/8e660052958731a43ce9c25d1b987bfb69ef79f0) Update light theme toggle color ### 📊 Changes **18 files changed** (+254 additions, -224 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-from-accounts-id-page-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-from-accounts-id-page-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-from-accounts-id-page-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-via-footer-button-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-via-footer-button-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-via-footer-button-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-via-footer-button-4-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-via-footer-button-5-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/transactions.mobile.test.js-snapshots/Mobile-Transactions-creates-a-transaction-via-footer-button-6-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/src/components/common/Menu.tsx` (+10 -5) 📝 `packages/desktop-client/src/components/common/Toggle.tsx` (+57 -42) 📝 `packages/desktop-client/src/components/mobile/MobileForms.tsx` (+29 -44) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx` (+142 -132) 📝 `packages/desktop-client/src/style/themes/dark.ts` (+2 -0) 📝 `packages/desktop-client/src/style/themes/development.ts` (+3 -0) 📝 `packages/desktop-client/src/style/themes/light.ts` (+2 -0) 📝 `packages/desktop-client/src/style/themes/midnight.ts` (+3 -1) ➕ `upcoming-release-notes/3622.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 --> --- <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-14 21:04:07 -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#19325