[PR #4807] [MERGED] feat: expandable budget categories #5590

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

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/4807
Author: @misu-dev
Created: 4/14/2025
Status: Merged
Merged: 4/18/2025
Merged by: @matt-fidd

Base: masterHead: feat/expandable-budget-categories


📝 Commits (3)

  • 829b445 feat: expandable budget categories
  • 6a6573f doc: add release note
  • b8a6567 test: update snapshots

📊 Changes

19 files changed (+146 additions, -11 deletions)

View changed files

packages/component-library/src/icons/v2/ArrowButtonSingleLeft1.tsx (+18 -0)
packages/component-library/src/icons/v2/arrow-button-single-left-1.svg (+1 -0)
📝 packages/component-library/src/icons/v2/index.ts (+1 -0)
📝 packages/desktop-client/e2e/budget.test.ts-snapshots/Budget-renders-the-summary-information-available-funds-overspent-budgeted-and-for-next-month-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/budget.test.ts-snapshots/Budget-renders-the-summary-information-available-funds-overspent-budgeted-and-for-next-month-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/budget.test.ts-snapshots/Budget-renders-the-summary-information-available-funds-overspent-budgeted-and-for-next-month-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/budget.test.ts-snapshots/Budget-transfer-funds-to-another-category-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/budget.test.ts-snapshots/Budget-transfer-funds-to-another-category-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/budget.test.ts-snapshots/Budget-transfer-funds-to-another-category-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/src/components/budget/BudgetPageHeader.tsx (+10 -1)
📝 packages/desktop-client/src/components/budget/BudgetTable.tsx (+4 -1)
📝 packages/desktop-client/src/components/budget/BudgetTotals.tsx (+71 -2)
📝 packages/desktop-client/src/components/budget/DynamicBudgetTable.tsx (+11 -4)
📝 packages/desktop-client/src/components/budget/IncomeHeader.tsx (+5 -1)
📝 packages/desktop-client/src/components/budget/SidebarCategory.tsx (+4 -1)
📝 packages/desktop-client/src/components/budget/SidebarGroup.tsx (+4 -1)
📝 packages/loot-core/src/server/preferences/app.ts (+9 -0)
📝 packages/loot-core/src/types/prefs.d.ts (+2 -0)
upcoming-release-notes/4807.md (+6 -0)

📄 Description

Adds a feature to resize the category names in the budget table (partially helps with feature #536, as the longer category names can be shown.

image

Besides the "Category" Label there is now a button to resize it from 200 to 300, from 300 to 400 and back to 200.

Probably temporary until the new table is implemented.


🔄 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/4807 **Author:** [@misu-dev](https://github.com/misu-dev) **Created:** 4/14/2025 **Status:** ✅ Merged **Merged:** 4/18/2025 **Merged by:** [@matt-fidd](https://github.com/matt-fidd) **Base:** `master` ← **Head:** `feat/expandable-budget-categories` --- ### 📝 Commits (3) - [`829b445`](https://github.com/actualbudget/actual/commit/829b445170d24a99edf94b8fb030b26939915c0f) feat: expandable budget categories - [`6a6573f`](https://github.com/actualbudget/actual/commit/6a6573fb46a027cd1f387287b241f4be495fb317) doc: add release note - [`b8a6567`](https://github.com/actualbudget/actual/commit/b8a6567072d66a21a6b3ee37ee4bb5ea8202f6dc) test: update snapshots ### 📊 Changes **19 files changed** (+146 additions, -11 deletions) <details> <summary>View changed files</summary> ➕ `packages/component-library/src/icons/v2/ArrowButtonSingleLeft1.tsx` (+18 -0) ➕ `packages/component-library/src/icons/v2/arrow-button-single-left-1.svg` (+1 -0) 📝 `packages/component-library/src/icons/v2/index.ts` (+1 -0) 📝 `packages/desktop-client/e2e/budget.test.ts-snapshots/Budget-renders-the-summary-information-available-funds-overspent-budgeted-and-for-next-month-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/budget.test.ts-snapshots/Budget-renders-the-summary-information-available-funds-overspent-budgeted-and-for-next-month-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/budget.test.ts-snapshots/Budget-renders-the-summary-information-available-funds-overspent-budgeted-and-for-next-month-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/budget.test.ts-snapshots/Budget-transfer-funds-to-another-category-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/budget.test.ts-snapshots/Budget-transfer-funds-to-another-category-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/budget.test.ts-snapshots/Budget-transfer-funds-to-another-category-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/src/components/budget/BudgetPageHeader.tsx` (+10 -1) 📝 `packages/desktop-client/src/components/budget/BudgetTable.tsx` (+4 -1) 📝 `packages/desktop-client/src/components/budget/BudgetTotals.tsx` (+71 -2) 📝 `packages/desktop-client/src/components/budget/DynamicBudgetTable.tsx` (+11 -4) 📝 `packages/desktop-client/src/components/budget/IncomeHeader.tsx` (+5 -1) 📝 `packages/desktop-client/src/components/budget/SidebarCategory.tsx` (+4 -1) 📝 `packages/desktop-client/src/components/budget/SidebarGroup.tsx` (+4 -1) 📝 `packages/loot-core/src/server/preferences/app.ts` (+9 -0) 📝 `packages/loot-core/src/types/prefs.d.ts` (+2 -0) ➕ `upcoming-release-notes/4807.md` (+6 -0) </details> ### 📄 Description Adds a feature to resize the category names in the budget table (partially helps with feature #536, as the longer category names can be shown. ![image](https://github.com/user-attachments/assets/4d482850-7da0-4e7c-b10b-9a363440d348) Besides the "Category" Label there is now a button to resize it from 200 to 300, from 300 to 400 and back to 200. Probably temporary until the new table is implemented. --- <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:14:57 -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#5590