[PR #2624] [MERGED] Mobile reports #34610

Closed
opened 2026-04-20 21:45:05 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/2624
Author: @carkom
Created: 4/18/2024
Status: Merged
Merged: 4/24/2024
Merged by: @carkom

Base: masterHead: mobileReports


📝 Commits (10+)

📊 Changes

21 files changed (+239 additions, -135 deletions)

View changed files

📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-checks-that-settings-page-can-be-opened-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-checks-that-settings-page-can-be-opened-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-checks-that-settings-page-can-be-opened-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-net-worth-and-cash-flow-reports-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-net-worth-and-cash-flow-reports-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-net-worth-and-cash-flow-reports-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/src/components/FinancesApp.tsx (+2 -9)
📝 packages/desktop-client/src/components/mobile/MobileNavTabs.tsx (+7 -0)
📝 packages/desktop-client/src/components/reports/Header.jsx (+47 -37)
📝 packages/desktop-client/src/components/reports/Overview.jsx (+9 -3)
📝 packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx (+9 -5)
📝 packages/desktop-client/src/components/reports/graphs/BarGraph.tsx (+18 -12)
📝 packages/desktop-client/src/components/reports/graphs/DonutGraph.tsx (+5 -1)
📝 packages/desktop-client/src/components/reports/graphs/LineGraph.tsx (+12 -7)
📝 packages/desktop-client/src/components/reports/graphs/NetWorthGraph.tsx (+9 -5)
📝 packages/desktop-client/src/components/reports/graphs/StackedBarGraph.tsx (+17 -7)
📝 packages/desktop-client/src/components/reports/reports/CashFlow.tsx (+10 -2)
📝 packages/desktop-client/src/components/reports/reports/CustomReport.jsx (+57 -42)
📝 packages/desktop-client/src/components/reports/reports/CustomReportListCards.tsx (+21 -3)
📝 packages/desktop-client/src/components/reports/reports/NetWorth.jsx (+10 -2)

...and 1 more files

📄 Description

Make reports work for mobile. Let me know what views/graphs could be adjusted.


🔄 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/2624 **Author:** [@carkom](https://github.com/carkom) **Created:** 4/18/2024 **Status:** ✅ Merged **Merged:** 4/24/2024 **Merged by:** [@carkom](https://github.com/carkom) **Base:** `master` ← **Head:** `mobileReports` --- ### 📝 Commits (10+) - [`14bfa8a`](https://github.com/actualbudget/actual/commit/14bfa8ac0b51144890c4b5299b3571fbaece31e7) mobile reports - [`b84ca7b`](https://github.com/actualbudget/actual/commit/b84ca7bb71ba96af87f981b6652c045865f28fd9) notes - [`7b91ab1`](https://github.com/actualbudget/actual/commit/7b91ab170084194436278855b370ff6e10330f7e) Merge branch 'master' into mobileReports - [`3c7f408`](https://github.com/actualbudget/actual/commit/3c7f408882d3bdae0fa68118836f035d28138935) header updates - [`c003225`](https://github.com/actualbudget/actual/commit/c003225ffb4b38f2f221332ed6c9bebfb2e90d21) hide tooltip in mobile view - [`cfe6b1b`](https://github.com/actualbudget/actual/commit/cfe6b1b445beb764f4397ce7176784954df5f0b9) visual updates - [`3e87ba0`](https://github.com/actualbudget/actual/commit/3e87ba0e36631ff60efd71302d3f1d3590009c04) Merge branch 'master' into mobileReports - [`bbf8323`](https://github.com/actualbudget/actual/commit/bbf8323c2f6b17a2d3246315e755ab7aae37f68c) padding changes - [`81b0e53`](https://github.com/actualbudget/actual/commit/81b0e5323426ee677ab75ab6f4c6c51ca820ebb7) VRT - [`d96f388`](https://github.com/actualbudget/actual/commit/d96f3889101e839e4b450f31c9d717e26b04ea31) bottom padding ### 📊 Changes **21 files changed** (+239 additions, -135 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-checks-that-settings-page-can-be-opened-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-checks-that-settings-page-can-be-opened-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-checks-that-settings-page-can-be-opened-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-net-worth-and-cash-flow-reports-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-net-worth-and-cash-flow-reports-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-net-worth-and-cash-flow-reports-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/src/components/FinancesApp.tsx` (+2 -9) 📝 `packages/desktop-client/src/components/mobile/MobileNavTabs.tsx` (+7 -0) 📝 `packages/desktop-client/src/components/reports/Header.jsx` (+47 -37) 📝 `packages/desktop-client/src/components/reports/Overview.jsx` (+9 -3) 📝 `packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx` (+9 -5) 📝 `packages/desktop-client/src/components/reports/graphs/BarGraph.tsx` (+18 -12) 📝 `packages/desktop-client/src/components/reports/graphs/DonutGraph.tsx` (+5 -1) 📝 `packages/desktop-client/src/components/reports/graphs/LineGraph.tsx` (+12 -7) 📝 `packages/desktop-client/src/components/reports/graphs/NetWorthGraph.tsx` (+9 -5) 📝 `packages/desktop-client/src/components/reports/graphs/StackedBarGraph.tsx` (+17 -7) 📝 `packages/desktop-client/src/components/reports/reports/CashFlow.tsx` (+10 -2) 📝 `packages/desktop-client/src/components/reports/reports/CustomReport.jsx` (+57 -42) 📝 `packages/desktop-client/src/components/reports/reports/CustomReportListCards.tsx` (+21 -3) 📝 `packages/desktop-client/src/components/reports/reports/NetWorth.jsx` (+10 -2) _...and 1 more files_ </details> ### 📄 Description Make reports work for mobile. Let me know what views/graphs could be adjusted. --- <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-20 21:45:05 -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#34610