[PR #2345] [MERGED] Update Custom Report styles #30186

Closed
opened 2026-04-18 06:36:34 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/2345
Author: @carkom
Created: 2/8/2024
Status: Merged
Merged: 2/10/2024
Merged by: @carkom

Base: masterHead: reportStyles


📝 Commits (10+)

  • d219bbd updated saved work
  • de160eb Merge remote-tracking branch 'upstream/master' into saveReportsNew
  • a0ca289 Merge remote-tracking branch 'upstream/master' into saveReportsNew
  • af2a03c merge fixes
  • ab3733b Disable CREATE TABLE
  • 6646267 notes
  • 9b297cf turn on db table
  • 83a5465 Fix TableGraph recall crash
  • ec1332c table format changes
  • 33697e0 type fixes

📊 Changes

17 files changed (+367 additions, -134 deletions)

View changed files

📝 packages/desktop-client/src/components/reports/ChooseGraph.tsx (+17 -6)
📝 packages/desktop-client/src/components/reports/SaveReport.tsx (+2 -1)
📝 packages/desktop-client/src/components/reports/SaveReportName.tsx (+8 -1)
📝 packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx (+28 -4)
📝 packages/desktop-client/src/components/reports/graphs/DonutGraph.tsx (+69 -17)
📝 packages/desktop-client/src/components/reports/graphs/StackedBarGraph.tsx (+5 -5)
📝 packages/desktop-client/src/components/reports/graphs/renderCustomLabel.tsx (+2 -1)
📝 packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTable.tsx (+17 -6)
📝 packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableHeader.tsx (+19 -13)
📝 packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableList.tsx (+36 -20)
📝 packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableRow.tsx (+17 -15)
📝 packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableTotals.tsx (+19 -13)
📝 packages/desktop-client/src/components/reports/reports/CustomReport.jsx (+2 -1)
📝 packages/loot-core/src/client/data-hooks/reports.ts (+19 -3)
📝 packages/loot-core/src/server/reports/app.ts (+81 -26)
📝 packages/loot-core/src/types/models/reports.d.ts (+20 -2)
upcoming-release-notes/2345.md (+6 -0)

📄 Description

A couple small changes to styles and graph style changes.

Trying to split out some pieces from #2335 to make it more manageable.


🔄 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/2345 **Author:** [@carkom](https://github.com/carkom) **Created:** 2/8/2024 **Status:** ✅ Merged **Merged:** 2/10/2024 **Merged by:** [@carkom](https://github.com/carkom) **Base:** `master` ← **Head:** `reportStyles` --- ### 📝 Commits (10+) - [`d219bbd`](https://github.com/actualbudget/actual/commit/d219bbd8d8bd541930f3a7b6dbd000e09dcc56df) updated saved work - [`de160eb`](https://github.com/actualbudget/actual/commit/de160eb5efb1b2f8f118d5537ddcd208871897ba) Merge remote-tracking branch 'upstream/master' into saveReportsNew - [`a0ca289`](https://github.com/actualbudget/actual/commit/a0ca2895fcaee247fd6aaa10bd64257e1bdb5639) Merge remote-tracking branch 'upstream/master' into saveReportsNew - [`af2a03c`](https://github.com/actualbudget/actual/commit/af2a03c5bacdfb2e1a77f0d28c126001521616dc) merge fixes - [`ab3733b`](https://github.com/actualbudget/actual/commit/ab3733bf5ff1e80f44619b822be6d6c336ba6753) Disable CREATE TABLE - [`6646267`](https://github.com/actualbudget/actual/commit/664626763b5c2ab790e524d1d71ec1193bcc242d) notes - [`9b297cf`](https://github.com/actualbudget/actual/commit/9b297cf79c0878e8f769c0962e0e416504636345) turn on db table - [`83a5465`](https://github.com/actualbudget/actual/commit/83a546546681b7185f7fc9409fd7662db9882597) Fix TableGraph recall crash - [`ec1332c`](https://github.com/actualbudget/actual/commit/ec1332cdd2b70f51e8ce97e974c9c93ab9c470ac) table format changes - [`33697e0`](https://github.com/actualbudget/actual/commit/33697e025856a72cd1883edffa7860e6e768540e) type fixes ### 📊 Changes **17 files changed** (+367 additions, -134 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/src/components/reports/ChooseGraph.tsx` (+17 -6) 📝 `packages/desktop-client/src/components/reports/SaveReport.tsx` (+2 -1) 📝 `packages/desktop-client/src/components/reports/SaveReportName.tsx` (+8 -1) 📝 `packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx` (+28 -4) 📝 `packages/desktop-client/src/components/reports/graphs/DonutGraph.tsx` (+69 -17) 📝 `packages/desktop-client/src/components/reports/graphs/StackedBarGraph.tsx` (+5 -5) 📝 `packages/desktop-client/src/components/reports/graphs/renderCustomLabel.tsx` (+2 -1) 📝 `packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTable.tsx` (+17 -6) 📝 `packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableHeader.tsx` (+19 -13) 📝 `packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableList.tsx` (+36 -20) 📝 `packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableRow.tsx` (+17 -15) 📝 `packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableTotals.tsx` (+19 -13) 📝 `packages/desktop-client/src/components/reports/reports/CustomReport.jsx` (+2 -1) 📝 `packages/loot-core/src/client/data-hooks/reports.ts` (+19 -3) 📝 `packages/loot-core/src/server/reports/app.ts` (+81 -26) 📝 `packages/loot-core/src/types/models/reports.d.ts` (+20 -2) ➕ `upcoming-release-notes/2345.md` (+6 -0) </details> ### 📄 Description A couple small changes to styles and graph style changes. Trying to split out some pieces from #2335 to make it more manageable. --- <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-18 06:36:34 -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#30186