[PR #5283] [MERGED] feat(currency): add to reports #20221

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

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/5283
Author: @misu-dev
Created: 7/4/2025
Status: Merged
Merged: 8/6/2025
Merged by: @matt-fidd

Base: masterHead: feat/currency-add-to-reports


📝 Commits (10+)

  • 67ca4dc feat(currency): add to networth report
  • a50afe7 feat(currency): add to cashflow report
  • 63ce0cc feat(currency): add to spending report
  • 6d36ff8 feat(currency): add to summary report
  • 5018919 feat(currency): add to calendar report
  • d7489b0 feat(currency): add to custom report
  • 38c48d3 chore: add release note
  • f56ccd5 Merge branch 'master' into feat/currency-add-to-reports
  • 6b2fed8 Merge branch 'master' into feat/currency-add-to-reports
  • 9fd5bc4 chore(rename): rename formatFunc to format

📊 Changes

35 files changed (+425 additions, -261 deletions)

View changed files

📝 packages/desktop-client/src/components/reports/Change.test.tsx (+23 -4)
📝 packages/desktop-client/src/components/reports/Change.tsx (+4 -2)
📝 packages/desktop-client/src/components/reports/ReportSummary.tsx (+8 -8)
📝 packages/desktop-client/src/components/reports/SummaryNumber.tsx (+11 -3)
📝 packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx (+26 -13)
📝 packages/desktop-client/src/components/reports/graphs/BarGraph.tsx (+15 -13)
📝 packages/desktop-client/src/components/reports/graphs/BarLineGraph.tsx (+3 -3)
📝 packages/desktop-client/src/components/reports/graphs/CalendarGraph.tsx (+9 -7)
📝 packages/desktop-client/src/components/reports/graphs/CashFlowGraph.tsx (+18 -13)
📝 packages/desktop-client/src/components/reports/graphs/DonutGraph.tsx (+27 -5)
📝 packages/desktop-client/src/components/reports/graphs/LineGraph.tsx (+13 -8)
📝 packages/desktop-client/src/components/reports/graphs/NetWorthGraph.tsx (+10 -22)
📝 packages/desktop-client/src/components/reports/graphs/SpendingGraph.tsx (+23 -11)
📝 packages/desktop-client/src/components/reports/graphs/StackedBarGraph.tsx (+21 -10)
📝 packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableRow.tsx (+14 -17)
packages/desktop-client/src/components/reports/graphs/util/computePadding.ts (+21 -0)
📝 packages/desktop-client/src/components/reports/reports/Calendar.tsx (+17 -9)
📝 packages/desktop-client/src/components/reports/reports/CalendarCard.tsx (+18 -13)
📝 packages/desktop-client/src/components/reports/reports/CashFlow.tsx (+17 -6)
📝 packages/desktop-client/src/components/reports/reports/CashFlowCard.tsx (+4 -2)

...and 15 more files

📄 Description

This PR adds the currency symbols to the reports.


🔄 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/5283 **Author:** [@misu-dev](https://github.com/misu-dev) **Created:** 7/4/2025 **Status:** ✅ Merged **Merged:** 8/6/2025 **Merged by:** [@matt-fidd](https://github.com/matt-fidd) **Base:** `master` ← **Head:** `feat/currency-add-to-reports` --- ### 📝 Commits (10+) - [`67ca4dc`](https://github.com/actualbudget/actual/commit/67ca4dc28252fa78b11998302aaec91f4bfbc373) feat(currency): add to networth report - [`a50afe7`](https://github.com/actualbudget/actual/commit/a50afe7cef8bf77833e8dffa505d03023b1c6ac8) feat(currency): add to cashflow report - [`63ce0cc`](https://github.com/actualbudget/actual/commit/63ce0cc301543f2a275b5f46f67dc08616afd910) feat(currency): add to spending report - [`6d36ff8`](https://github.com/actualbudget/actual/commit/6d36ff81b9ce000b8bd4b9996ba38586ea97ccf8) feat(currency): add to summary report - [`5018919`](https://github.com/actualbudget/actual/commit/50189195156db312d1f365aaa7d08254bdc14775) feat(currency): add to calendar report - [`d7489b0`](https://github.com/actualbudget/actual/commit/d7489b011f746bec5f6d7b90b2600fb1149b9920) feat(currency): add to custom report - [`38c48d3`](https://github.com/actualbudget/actual/commit/38c48d3670349bd8f7b5b47012e5842ff3be8ddb) chore: add release note - [`f56ccd5`](https://github.com/actualbudget/actual/commit/f56ccd5b701785860bec045afcef7e6c3d9abbaa) Merge branch 'master' into feat/currency-add-to-reports - [`6b2fed8`](https://github.com/actualbudget/actual/commit/6b2fed854ea1303c1095c4387667749babe5aa58) Merge branch 'master' into feat/currency-add-to-reports - [`9fd5bc4`](https://github.com/actualbudget/actual/commit/9fd5bc45280739232595691ebc1fe013315a3eff) chore(rename): rename formatFunc to format ### 📊 Changes **35 files changed** (+425 additions, -261 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/src/components/reports/Change.test.tsx` (+23 -4) 📝 `packages/desktop-client/src/components/reports/Change.tsx` (+4 -2) 📝 `packages/desktop-client/src/components/reports/ReportSummary.tsx` (+8 -8) 📝 `packages/desktop-client/src/components/reports/SummaryNumber.tsx` (+11 -3) 📝 `packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx` (+26 -13) 📝 `packages/desktop-client/src/components/reports/graphs/BarGraph.tsx` (+15 -13) 📝 `packages/desktop-client/src/components/reports/graphs/BarLineGraph.tsx` (+3 -3) 📝 `packages/desktop-client/src/components/reports/graphs/CalendarGraph.tsx` (+9 -7) 📝 `packages/desktop-client/src/components/reports/graphs/CashFlowGraph.tsx` (+18 -13) 📝 `packages/desktop-client/src/components/reports/graphs/DonutGraph.tsx` (+27 -5) 📝 `packages/desktop-client/src/components/reports/graphs/LineGraph.tsx` (+13 -8) 📝 `packages/desktop-client/src/components/reports/graphs/NetWorthGraph.tsx` (+10 -22) 📝 `packages/desktop-client/src/components/reports/graphs/SpendingGraph.tsx` (+23 -11) 📝 `packages/desktop-client/src/components/reports/graphs/StackedBarGraph.tsx` (+21 -10) 📝 `packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableRow.tsx` (+14 -17) ➕ `packages/desktop-client/src/components/reports/graphs/util/computePadding.ts` (+21 -0) 📝 `packages/desktop-client/src/components/reports/reports/Calendar.tsx` (+17 -9) 📝 `packages/desktop-client/src/components/reports/reports/CalendarCard.tsx` (+18 -13) 📝 `packages/desktop-client/src/components/reports/reports/CashFlow.tsx` (+17 -6) 📝 `packages/desktop-client/src/components/reports/reports/CashFlowCard.tsx` (+4 -2) _...and 15 more files_ </details> ### 📄 Description This PR adds the currency symbols to the reports. --- <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:31:17 -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#20221