[PR #4019] [MERGED] Add YTD and last year to Reports headers #5154

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

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/4019
Author: @rodriguestiago0
Created: 12/21/2024
Status: Merged
Merged: 1/17/2025
Merged by: @matt-fidd

Base: masterHead: add_ytd_and_last_year


📝 Commits (10+)

📊 Changes

14 files changed (+97 additions, -3 deletions)

View changed files

📝 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/e2e/reports.test.js-snapshots/Reports-loads-net-worth-graph-and-checks-visuals-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-net-worth-graph-and-checks-visuals-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-net-worth-graph-and-checks-visuals-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/src/components/reports/Header.tsx (+51 -1)
📝 packages/desktop-client/src/components/reports/reportRanges.ts (+14 -0)
📝 packages/desktop-client/src/components/reports/reports/Calendar.tsx (+4 -0)
📝 packages/desktop-client/src/components/reports/reports/CashFlow.tsx (+7 -0)
📝 packages/desktop-client/src/components/reports/reports/NetWorth.tsx (+7 -0)
📝 packages/desktop-client/src/components/reports/reports/Summary.tsx (+7 -1)
📝 packages/loot-core/src/types/models/dashboard.d.ts (+1 -1)
upcoming-release-notes/4019.md (+6 -0)

📄 Description

Add "Year to date" and "Last year" to header report

image


🔄 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/4019 **Author:** [@rodriguestiago0](https://github.com/rodriguestiago0) **Created:** 12/21/2024 **Status:** ✅ Merged **Merged:** 1/17/2025 **Merged by:** [@matt-fidd](https://github.com/matt-fidd) **Base:** `master` ← **Head:** `add_ytd_and_last_year` --- ### 📝 Commits (10+) - [`97e5d90`](https://github.com/actualbudget/actual/commit/97e5d90e5ce863279d58769547278235ec5365ea) Add YTD and last year to Reports headers - [`08d75b9`](https://github.com/actualbudget/actual/commit/08d75b98e99cda3827bc52e0d0e4e09c629b013b) Add release note - [`3e1d7e7`](https://github.com/actualbudget/actual/commit/3e1d7e73b6669a8c2f5f57ae273921304cc707e4) Merge branch 'master' into add_ytd_and_last_year - [`26c2b37`](https://github.com/actualbudget/actual/commit/26c2b3782febedee095b9499e0e94b8d98fdcfb8) lint - [`585d042`](https://github.com/actualbudget/actual/commit/585d04281dccb64ba4cf52b0f24420c58e423459) merge - [`290058a`](https://github.com/actualbudget/actual/commit/290058a1578b16b061a0137285ba6533b3a9be97) fix end date picker - [`121d09b`](https://github.com/actualbudget/actual/commit/121d09bd38e8fb3686ce91490ea6e25b49eb3132) remove debugger - [`f4973c8`](https://github.com/actualbudget/actual/commit/f4973c8ba4edcc09fcbc0a3442c0a5cb954f9925) Update VRT - [`690627e`](https://github.com/actualbudget/actual/commit/690627e0a8babe3e64bf2399e57b2edaed6c4f06) Merge branch 'master' into add_ytd_and_last_year - [`39a5d2e`](https://github.com/actualbudget/actual/commit/39a5d2e5e8c6b312c85b74e89666d4f238a3845a) merge master ### 📊 Changes **14 files changed** (+97 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `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/e2e/reports.test.js-snapshots/Reports-loads-net-worth-graph-and-checks-visuals-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-net-worth-graph-and-checks-visuals-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/reports.test.js-snapshots/Reports-loads-net-worth-graph-and-checks-visuals-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/src/components/reports/Header.tsx` (+51 -1) 📝 `packages/desktop-client/src/components/reports/reportRanges.ts` (+14 -0) 📝 `packages/desktop-client/src/components/reports/reports/Calendar.tsx` (+4 -0) 📝 `packages/desktop-client/src/components/reports/reports/CashFlow.tsx` (+7 -0) 📝 `packages/desktop-client/src/components/reports/reports/NetWorth.tsx` (+7 -0) 📝 `packages/desktop-client/src/components/reports/reports/Summary.tsx` (+7 -1) 📝 `packages/loot-core/src/types/models/dashboard.d.ts` (+1 -1) ➕ `upcoming-release-notes/4019.md` (+6 -0) </details> ### 📄 Description Add "Year to date" and "Last year" to header report ![image](https://github.com/user-attachments/assets/55cd97b1-1c81-4069-a918-481690bdd38c) --- <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:06:55 -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#5154