[PR #3417] [MERGED] (dashboards) ability to save cash-flow report filters/date-range #4843

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

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/3417
Author: @MatissJanis
Created: 9/10/2024
Status: Merged
Merged: 9/13/2024
Merged by: @MatissJanis

Base: masterHead: matiss/dashboards-cash-flow


📝 Commits (7)

  • a6cff0b (dashboards) ability to save cash-flow report filters/date-range
  • 77f7105 Refactor to use months instead of ISO dates
  • b70a06b Release notes
  • f04ee5d Update VRT
  • da25323 Feedback: timeframe buttons
  • ab2d3d1 Merge branch 'master' into matiss/dashboards-cash-flow
  • 824a048 Update VRT

📊 Changes

19 files changed (+222 additions, -67 deletions)

View changed files

📝 .eslintignore (+1 -0)
📝 packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-cash-flow-graph-and-checks-visuals-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-cash-flow-graph-and-checks-visuals-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-cash-flow-graph-and-checks-visuals-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/src/components/reports/Header.tsx (+10 -8)
📝 packages/desktop-client/src/components/reports/Overview.tsx (+1 -0)
📝 packages/desktop-client/src/components/reports/ReportRouter.tsx (+1 -0)
📝 packages/desktop-client/src/components/reports/graphs/CashFlowGraph.tsx (+1 -1)
📝 packages/desktop-client/src/components/reports/reportRanges.ts (+11 -6)
📝 packages/desktop-client/src/components/reports/reports/CashFlow.tsx (+114 -31)
📝 packages/desktop-client/src/components/reports/reports/CashFlowCard.tsx (+18 -6)
📝 packages/desktop-client/src/components/reports/reports/NetWorth.jsx (+4 -1)
📝 packages/desktop-client/src/components/reports/spreadsheets/cash-flow-spreadsheet.tsx (+33 -6)
📝 packages/desktop-client/src/components/reports/spreadsheets/net-worth-spreadsheet.ts (+3 -3)
📝 packages/loot-core/src/client/data-hooks/widget.ts (+3 -3)
📝 packages/loot-core/src/shared/months.ts (+8 -0)
📝 packages/loot-core/src/types/models/dashboard.d.ts (+6 -1)
📝 tsconfig.json (+2 -1)
upcoming-release-notes/3417.md (+6 -0)

📄 Description

Allows saving filters and timeranges for cash-flow widgets.


🔄 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/3417 **Author:** [@MatissJanis](https://github.com/MatissJanis) **Created:** 9/10/2024 **Status:** ✅ Merged **Merged:** 9/13/2024 **Merged by:** [@MatissJanis](https://github.com/MatissJanis) **Base:** `master` ← **Head:** `matiss/dashboards-cash-flow` --- ### 📝 Commits (7) - [`a6cff0b`](https://github.com/actualbudget/actual/commit/a6cff0bd041781ef0d7fe295bfbd625b9d0c08f6) :sparkles: (dashboards) ability to save cash-flow report filters/date-range - [`77f7105`](https://github.com/actualbudget/actual/commit/77f71050fbeecfbe50052036fc04d1c782d9d8e2) Refactor to use months instead of ISO dates - [`b70a06b`](https://github.com/actualbudget/actual/commit/b70a06b21e654a7b1519e64e59373a1a33cffaa3) Release notes - [`f04ee5d`](https://github.com/actualbudget/actual/commit/f04ee5dd21cabc1af30e24da19c50909a81cd94e) Update VRT - [`da25323`](https://github.com/actualbudget/actual/commit/da25323d6b2f903df94292185c5f27f82c84ee87) Feedback: timeframe buttons - [`ab2d3d1`](https://github.com/actualbudget/actual/commit/ab2d3d1528f39821de0a3110dd90978b58b462be) Merge branch 'master' into matiss/dashboards-cash-flow - [`824a048`](https://github.com/actualbudget/actual/commit/824a048d3751a3b035dd2149bef36a656445850c) Update VRT ### 📊 Changes **19 files changed** (+222 additions, -67 deletions) <details> <summary>View changed files</summary> 📝 `.eslintignore` (+1 -0) 📝 `packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-cash-flow-graph-and-checks-visuals-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-cash-flow-graph-and-checks-visuals-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-cash-flow-graph-and-checks-visuals-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/src/components/reports/Header.tsx` (+10 -8) 📝 `packages/desktop-client/src/components/reports/Overview.tsx` (+1 -0) 📝 `packages/desktop-client/src/components/reports/ReportRouter.tsx` (+1 -0) 📝 `packages/desktop-client/src/components/reports/graphs/CashFlowGraph.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/reports/reportRanges.ts` (+11 -6) 📝 `packages/desktop-client/src/components/reports/reports/CashFlow.tsx` (+114 -31) 📝 `packages/desktop-client/src/components/reports/reports/CashFlowCard.tsx` (+18 -6) 📝 `packages/desktop-client/src/components/reports/reports/NetWorth.jsx` (+4 -1) 📝 `packages/desktop-client/src/components/reports/spreadsheets/cash-flow-spreadsheet.tsx` (+33 -6) 📝 `packages/desktop-client/src/components/reports/spreadsheets/net-worth-spreadsheet.ts` (+3 -3) 📝 `packages/loot-core/src/client/data-hooks/widget.ts` (+3 -3) 📝 `packages/loot-core/src/shared/months.ts` (+8 -0) 📝 `packages/loot-core/src/types/models/dashboard.d.ts` (+6 -1) 📝 `tsconfig.json` (+2 -1) ➕ `upcoming-release-notes/3417.md` (+6 -0) </details> ### 📄 Description Allows saving filters and timeranges for cash-flow widgets. --- <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:02:06 -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#4843