[PR #6903] [MERGED] Add Budgeted type to custom report widgets #56110

Closed
opened 2026-05-01 03:41:02 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/6903
Author: @diepala
Created: 2/8/2026
Status: Merged
Merged: 3/23/2026
Merged by: @youngcw

Base: masterHead: feat/budgeted-amounts-custom-reports


📝 Commits (10+)

  • e5f3994 feat(reports): add Budgeted type to custom report widgets
  • 9634a87 chore(release-notes): add entry for budgeted custom reports
  • 0c9842c chore: add feedback link
  • f4c0a01 fix: address coderabbit review comments
  • 5d0002e fix: address coderabbit review comments
  • 87a39fe Update VRT screenshots
  • 4731847 Merge master into feat/budgeted-amounts-custom-reports
  • 77d67dc fix vrt images
  • 0039e65 fixes
  • a9fc624 update vrt

📊 Changes

31 files changed (+600 additions, -123 deletions)

View changed files

📝 packages/desktop-client/e2e/reports.test.ts-snapshots/Reports-custom-reports-Switches-to-Data-Table-and-checks-the-visuals-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/reports.test.ts-snapshots/Reports-loads-net-worth-graph-and-checks-visuals-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/reports.test.ts-snapshots/Reports-loads-net-worth-graph-and-checks-visuals-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/reports.test.ts-snapshots/Reports-loads-net-worth-graph-and-checks-visuals-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/src/components/filters/FiltersMenu.tsx (+20 -17)
📝 packages/desktop-client/src/components/reports/ReportOptions.ts (+5 -0)
📝 packages/desktop-client/src/components/reports/ReportSidebar.tsx (+38 -2)
📝 packages/desktop-client/src/components/reports/ReportSummary.tsx (+6 -2)
📝 packages/desktop-client/src/components/reports/ReportTopbar.tsx (+15 -1)
📝 packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx (+17 -5)
📝 packages/desktop-client/src/components/reports/graphs/BarGraph.tsx (+21 -6)
📝 packages/desktop-client/src/components/reports/graphs/showActivity.ts (+6 -6)
📝 packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableHeader.tsx (+1 -1)
📝 packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableList.tsx (+1 -0)
📝 packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableRow.tsx (+1 -1)
📝 packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableTotals.tsx (+1 -0)
📝 packages/desktop-client/src/components/reports/reports/CustomReport.tsx (+58 -13)
📝 packages/desktop-client/src/components/reports/reports/GetCardData.tsx (+6 -1)
📝 packages/desktop-client/src/components/reports/spreadsheets/budget-analysis-spreadsheet.ts (+8 -6)
packages/desktop-client/src/components/reports/spreadsheets/budgetDataQuery.ts (+209 -0)

...and 11 more files

📄 Description

Feature: Add a "Budgeted" type to the custom report widget.

This feature adds a new "Budgeted" type to the custom report widget, which allows analyzing the budgeted amounts instead of only payment, deposited, or net amounts.

image image

Motivation: The custom report is a powerful report that allows analyzing the transactions by time period, category, group... However, it can only analyze transactions but not budgeted amounts. In some situations, this is not enough, especially with sinking fund categories or saving categories. For example, people may want to know how much they are allocating to a sinking fund or saving category over time in comparison to other usual expenses such as food. If the report only analyzed transactions, sinking fund categories would not show any allocation in almost all periods except in the period when the big expense is done, which is not very useful. By using the budgeted amounts, the report allows us to have a more consistent view of the amount being allocated to the sinking fund each period.

Existing functionality: PR #6137 introduced a new widget to perform budget analysis, but it doesn't have the same functionality. That feature allows analyzing the cash flow without comparing by category or group, whereas the present feature leverages the existing custom report functionality to allow comparing the budgeted amounts by category/group over time.

Changes:

  • The changes are done behind a new experimental feature flag.
  • A new budgeted type has been added to custom report widget. When the budgeted type is selected, Weekly and Daily intervals are disabled, as budgets are monthly. The split options Payee and Account are also disabled, as budgets don't apply there.
  • Make sure the Budget Analysis widget and the Budgeted type in Custom Report widget are not visible if budgeting mode is set to tracking instead of envelope.

Disclaimer: This feature was generated with the help of AI agents.


Bundle Stats

Bundle Files count Total bundle size % Changed
desktop-client 27 12.51 MB → 12.54 MB (+24.63 kB) +0.19%
loot-core 1 4.83 MB 0%
api 4 4.06 MB 0%
cli 1 7.88 MB 0%
View detailed bundle stats

desktop-client

Total

Files count Total bundle size % Changed
27 12.51 MB → 12.54 MB (+24.63 kB) +0.19%
Changeset
File Δ Size
src/components/reports/spreadsheets/budgetDataQuery.ts 🆕 +3.41 kB 0 B → 3.41 kB
src/components/reports/spreadsheets/fetchSpreadsheetQueryData.ts 🆕 +794 B 0 B → 794 B
src/components/reports/reports/CustomReport.tsx 📈 +17.11 kB (+70.77%) 24.17 kB → 41.28 kB
src/components/reports/useReport.ts ���� +114 B (+32.66%) 349 B → 463 B
src/components/reports/spreadsheets/filterEmptyRows.ts 📈 +37 B (+9.54%) 388 B → 425 B
src/components/reports/spreadsheets/calculateLegend.ts 📈 +96 B (+7.48%) 1.25 kB → 1.35 kB
src/components/reports/spreadsheets/custom-spreadsheet.ts 📈 +371 B (+7.00%) 5.18 kB → 5.54 kB
src/components/reports/graphs/showActivity.ts 📈 +112 B (+6.39%) 1.71 kB → 1.82 kB
src/components/reports/ReportSidebar.tsx 📈 +807 B (+4.95%) 15.91 kB → 16.7 kB
src/components/reports/spreadsheets/trimIntervals.ts 📈 +118 B (+4.21%) 2.73 kB → 2.85 kB
src/components/reports/ReportSummary.tsx 📈 +118 B (+3.34%) 3.45 kB → 3.56 kB
src/components/reports/spreadsheets/recalculate.ts 📈 +64 B (+3.26%) 1.92 kB → 1.98 kB
src/components/reports/graphs/BarGraph.tsx 📈 +330 B (+3.08%) 10.45 kB → 10.77 kB
src/components/reports/spreadsheets/grouped-spreadsheet.ts 📈 +91 B (+3.04%) 2.93 kB → 3.02 kB
src/components/reports/reports/GetCardData.tsx 📈 +218 B (+2.86%) 7.45 kB → 7.67 kB
src/components/reports/graphs/AreaGraph.tsx 📈 +300 B (+2.68%) 10.92 kB → 11.21 kB
src/components/reports/graphs/tableGraph/ReportTableTotals.tsx 📈 +100 B (+2.66%) 3.67 kB → 3.77 kB
src/components/reports/graphs/tableGraph/ReportTableList.tsx 📈 +41 B (+2.02%) 1.98 kB → 2.02 kB
src/components/reports/ReportTopbar.tsx 📈 +240 B (+1.69%) 13.89 kB → 14.13 kB
src/components/reports/ReportOptions.ts 📈 +82 B (+1.15%) 6.99 kB → 7.07 kB
src/components/filters/FiltersMenu.tsx 📈 +122 B (+0.72%) 16.46 kB → 16.58 kB
src/components/reports/graphs/tableGraph/ReportTableHeader.tsx 📈 +25 B (+0.58%) 4.2 kB → 4.23 kB
src/components/reports/graphs/tableGraph/ReportTableRow.tsx 📈 +25 B (+0.19%) 12.71 kB → 12.73 kB
src/components/reports/graphs/DonutGraph.tsx 📈 +4 B (+0.02%) 22.1 kB → 22.1 kB
src/components/reports/reports/Calendar.tsx 📈 +2 B (+0.01%) 26.64 kB → 26.64 kB
src/components/reports/reports/Crossover.tsx 📈 +2 B (+0.01%) 38.68 kB → 38.68 kB
View detailed bundle breakdown

Added
No assets were added

Removed
No assets were removed

Bigger

Asset File Size % Changed
static/js/ReportRouter.js 1021.25 kB → 1.02 MB (+24.51 kB) +2.40%
static/js/index.js 3.23 MB → 3.23 MB (+122 B) +0.00%

Smaller
No assets were smaller

Unchanged

Asset File Size % Changed
static/js/BackgroundImage.js 119.98 kB 0%
static/js/FormulaEditor.js 846.44 kB 0%
static/js/TransactionList.js 81.29 kB 0%
static/js/ca.js 185.57 kB 0%
static/js/da.js 104.66 kB 0%
static/js/de.js 177.58 kB 0%
static/js/en-GB.js 7.16 kB 0%
static/js/en.js 170.68 kB 0%
static/js/es.js 172.13 kB 0%
static/js/fr.js 177.57 kB 0%
static/js/indexeddb-main-thread-worker-e59fee74.js 13.46 kB 0%
static/js/it.js 168.97 kB 0%
static/js/narrow.js 354.12 kB 0%
static/js/nb-NO.js 154.72 kB 0%
static/js/nl.js 111.58 kB 0%
static/js/pl.js 88.34 kB 0%
static/js/pt-BR.js 180.5 kB 0%
static/js/resize-observer.js 18.03 kB 0%
static/js/sv.js 80.58 kB 0%
static/js/th.js 179.94 kB 0%
static/js/theme.js 484.67 kB 0%
static/js/uk.js 213.14 kB 0%
static/js/useTransactionBatchActions.js 4.29 MB 0%
static/js/wide.js 418 B 0%
static/js/workbox-window.prod.es5.js 7.28 kB 0%

loot-core

Total

Files count Total bundle size % Changed
1 4.83 MB 0%
View detailed bundle breakdown

Added
No assets were added

Removed
No assets were removed

Bigger
No assets were bigger

Smaller
No assets were smaller

Unchanged

Asset File Size % Changed
kcab.worker.Dmj0rSrb.js 4.83 MB 0%

api

Total

Files count Total bundle size % Changed
4 4.06 MB 0%
View detailed bundle breakdown

Added
No assets were added

Removed
No assets were removed

Bigger
No assets were bigger

Smaller
No assets were smaller

Unchanged

Asset File Size % Changed
index.js 3.84 MB 0%
from-Bl-Hslp4.js 167.73 kB 0%
multipart-parser-BnDysoMr.js 8.1 kB 0%
src-iMkUmuwR.js 43.64 kB 0%

cli

Total

Files count Total bundle size % Changed
1 7.88 MB 0%
View detailed bundle breakdown

Added
No assets were added

Removed
No assets were removed

Bigger
No assets were bigger

Smaller
No assets were smaller

Unchanged

Asset File Size % Changed
cli.js 7.88 MB 0%

🔄 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/6903 **Author:** [@diepala](https://github.com/diepala) **Created:** 2/8/2026 **Status:** ✅ Merged **Merged:** 3/23/2026 **Merged by:** [@youngcw](https://github.com/youngcw) **Base:** `master` ← **Head:** `feat/budgeted-amounts-custom-reports` --- ### 📝 Commits (10+) - [`e5f3994`](https://github.com/actualbudget/actual/commit/e5f3994aa6b0d8cfacca256923f92e92ececc999) feat(reports): add Budgeted type to custom report widgets - [`9634a87`](https://github.com/actualbudget/actual/commit/9634a871126c06e40b2ad5f1a928ea66c44820d1) chore(release-notes): add entry for budgeted custom reports - [`0c9842c`](https://github.com/actualbudget/actual/commit/0c9842ccde7741eafb436b5e68fa0efa7afb9b93) chore: add feedback link - [`f4c0a01`](https://github.com/actualbudget/actual/commit/f4c0a011fd1fcf764524d46ca3e4d20e134d6286) fix: address coderabbit review comments - [`5d0002e`](https://github.com/actualbudget/actual/commit/5d0002e282e9a3b3c06426b0ed5d713f7786c499) fix: address coderabbit review comments - [`87a39fe`](https://github.com/actualbudget/actual/commit/87a39fe443259ed73f1d4f748fc4fe577ac1c9c0) Update VRT screenshots - [`4731847`](https://github.com/actualbudget/actual/commit/4731847d3d68bba5ff56caf88d0bcc7f4d6430ac) Merge master into feat/budgeted-amounts-custom-reports - [`77d67dc`](https://github.com/actualbudget/actual/commit/77d67dcd9b5bdf9261a2b3697cad50137d78a41d) fix vrt images - [`0039e65`](https://github.com/actualbudget/actual/commit/0039e65e3f9c4a2f7f17b8ffab8af80c0b25a51d) fixes - [`a9fc624`](https://github.com/actualbudget/actual/commit/a9fc6246f21ec28940e8a89c6d5a4e2cc6c52ae5) update vrt ### 📊 Changes **31 files changed** (+600 additions, -123 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/e2e/reports.test.ts-snapshots/Reports-custom-reports-Switches-to-Data-Table-and-checks-the-visuals-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/reports.test.ts-snapshots/Reports-loads-net-worth-graph-and-checks-visuals-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/reports.test.ts-snapshots/Reports-loads-net-worth-graph-and-checks-visuals-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/reports.test.ts-snapshots/Reports-loads-net-worth-graph-and-checks-visuals-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/src/components/filters/FiltersMenu.tsx` (+20 -17) 📝 `packages/desktop-client/src/components/reports/ReportOptions.ts` (+5 -0) 📝 `packages/desktop-client/src/components/reports/ReportSidebar.tsx` (+38 -2) 📝 `packages/desktop-client/src/components/reports/ReportSummary.tsx` (+6 -2) 📝 `packages/desktop-client/src/components/reports/ReportTopbar.tsx` (+15 -1) 📝 `packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx` (+17 -5) 📝 `packages/desktop-client/src/components/reports/graphs/BarGraph.tsx` (+21 -6) 📝 `packages/desktop-client/src/components/reports/graphs/showActivity.ts` (+6 -6) 📝 `packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableHeader.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableList.tsx` (+1 -0) 📝 `packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableRow.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/reports/graphs/tableGraph/ReportTableTotals.tsx` (+1 -0) 📝 `packages/desktop-client/src/components/reports/reports/CustomReport.tsx` (+58 -13) 📝 `packages/desktop-client/src/components/reports/reports/GetCardData.tsx` (+6 -1) 📝 `packages/desktop-client/src/components/reports/spreadsheets/budget-analysis-spreadsheet.ts` (+8 -6) ➕ `packages/desktop-client/src/components/reports/spreadsheets/budgetDataQuery.ts` (+209 -0) _...and 11 more files_ </details> ### 📄 Description <!-- Thank you for submitting a pull request! Make sure to follow the instructions to write release notes for your PR — it should only take a minute or two: https://github.com/actualbudget/docs#writing-good-release-notes. Try running yarn generate:release-notes *before* pushing your PR for an interactive experience. --> Feature: Add a "Budgeted" type to the custom report widget. This feature adds a new "Budgeted" type to the custom report widget, which allows analyzing the budgeted amounts instead of only payment, deposited, or net amounts. <img width="1702" height="935" alt="image" src="https://github.com/user-attachments/assets/93f7fa73-0d47-4fab-9b5f-0f1d0d73a1ea" /> <img width="1119" height="405" alt="image" src="https://github.com/user-attachments/assets/998ab521-3370-4a31-b0d3-f7064f9f0d72" /> Motivation: The custom report is a powerful report that allows analyzing the transactions by time period, category, group... However, it can only analyze transactions but not budgeted amounts. In some situations, this is not enough, especially with sinking fund categories or saving categories. For example, people may want to know how much they are allocating to a sinking fund or saving category over time in comparison to other usual expenses such as food. If the report only analyzed transactions, sinking fund categories would not show any allocation in almost all periods except in the period when the big expense is done, which is not very useful. By using the budgeted amounts, the report allows us to have a more consistent view of the amount being allocated to the sinking fund each period. Existing functionality: PR #6137 introduced a new widget to perform budget analysis, but it doesn't have the same functionality. That feature allows analyzing the cash flow without comparing by category or group, whereas the present feature leverages the existing custom report functionality to allow comparing the budgeted amounts by category/group over time. Changes: - <strike>The changes are done behind a new experimental feature flag.</strike> - A new budgeted type has been added to custom report widget. When the budgeted type is selected, Weekly and Daily intervals are disabled, as budgets are monthly. The split options Payee and Account are also disabled, as budgets don't apply there. - Make sure the Budget Analysis widget and the Budgeted type in Custom Report widget are not visible if budgeting mode is set to tracking instead of envelope. Disclaimer: This feature was generated with the help of AI agents. <!--- actual-bot-sections ---> <hr /> <!--- bundlestats-action-comment key:combined start ---> ### Bundle Stats Bundle | Files count | Total bundle size | % Changed ------ | ----------- | ----------------- | --------- desktop-client | 27 | 12.51 MB → 12.54 MB (+24.63 kB) | +0.19% loot-core | 1 | 4.83 MB | 0% api | 4 | 4.06 MB | 0% cli | 1 | 7.88 MB | 0% <details> <summary>View detailed bundle stats</summary> #### desktop-client **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 27 | 12.51 MB → 12.54 MB (+24.63 kB) | +0.19% <details> <summary>Changeset</summary> File | Δ | Size ---- | - | ---- `src/components/reports/spreadsheets/budgetDataQuery.ts` | 🆕 +3.41 kB | 0 B → 3.41 kB `src/components/reports/spreadsheets/fetchSpreadsheetQueryData.ts` | 🆕 +794 B | 0 B → 794 B `src/components/reports/reports/CustomReport.tsx` | 📈 +17.11 kB (+70.77%) | 24.17 kB → 41.28 kB `src/components/reports/useReport.ts` | ���� +114 B (+32.66%) | 349 B → 463 B `src/components/reports/spreadsheets/filterEmptyRows.ts` | 📈 +37 B (+9.54%) | 388 B → 425 B `src/components/reports/spreadsheets/calculateLegend.ts` | 📈 +96 B (+7.48%) | 1.25 kB → 1.35 kB `src/components/reports/spreadsheets/custom-spreadsheet.ts` | 📈 +371 B (+7.00%) | 5.18 kB → 5.54 kB `src/components/reports/graphs/showActivity.ts` | 📈 +112 B (+6.39%) | 1.71 kB → 1.82 kB `src/components/reports/ReportSidebar.tsx` | 📈 +807 B (+4.95%) | 15.91 kB → 16.7 kB `src/components/reports/spreadsheets/trimIntervals.ts` | 📈 +118 B (+4.21%) | 2.73 kB → 2.85 kB `src/components/reports/ReportSummary.tsx` | 📈 +118 B (+3.34%) | 3.45 kB → 3.56 kB `src/components/reports/spreadsheets/recalculate.ts` | 📈 +64 B (+3.26%) | 1.92 kB → 1.98 kB `src/components/reports/graphs/BarGraph.tsx` | 📈 +330 B (+3.08%) | 10.45 kB → 10.77 kB `src/components/reports/spreadsheets/grouped-spreadsheet.ts` | 📈 +91 B (+3.04%) | 2.93 kB → 3.02 kB `src/components/reports/reports/GetCardData.tsx` | 📈 +218 B (+2.86%) | 7.45 kB → 7.67 kB `src/components/reports/graphs/AreaGraph.tsx` | 📈 +300 B (+2.68%) | 10.92 kB → 11.21 kB `src/components/reports/graphs/tableGraph/ReportTableTotals.tsx` | 📈 +100 B (+2.66%) | 3.67 kB → 3.77 kB `src/components/reports/graphs/tableGraph/ReportTableList.tsx` | 📈 +41 B (+2.02%) | 1.98 kB → 2.02 kB `src/components/reports/ReportTopbar.tsx` | 📈 +240 B (+1.69%) | 13.89 kB → 14.13 kB `src/components/reports/ReportOptions.ts` | 📈 +82 B (+1.15%) | 6.99 kB → 7.07 kB `src/components/filters/FiltersMenu.tsx` | 📈 +122 B (+0.72%) | 16.46 kB → 16.58 kB `src/components/reports/graphs/tableGraph/ReportTableHeader.tsx` | 📈 +25 B (+0.58%) | 4.2 kB → 4.23 kB `src/components/reports/graphs/tableGraph/ReportTableRow.tsx` | 📈 +25 B (+0.19%) | 12.71 kB → 12.73 kB `src/components/reports/graphs/DonutGraph.tsx` | 📈 +4 B (+0.02%) | 22.1 kB → 22.1 kB `src/components/reports/reports/Calendar.tsx` | 📈 +2 B (+0.01%) | 26.64 kB → 26.64 kB `src/components/reports/reports/Crossover.tsx` | 📈 +2 B (+0.01%) | 38.68 kB → 38.68 kB </details> <details> <summary>View detailed bundle breakdown</summary> <div> **Added** No assets were added **Removed** No assets were removed **Bigger** Asset | File Size | % Changed ----- | --------- | --------- static/js/ReportRouter.js | 1021.25 kB → 1.02 MB (+24.51 kB) | +2.40% static/js/index.js | 3.23 MB → 3.23 MB (+122 B) | +0.00% **Smaller** No assets were smaller **Unchanged** Asset | File Size | % Changed ----- | --------- | --------- static/js/BackgroundImage.js | 119.98 kB | 0% static/js/FormulaEditor.js | 846.44 kB | 0% static/js/TransactionList.js | 81.29 kB | 0% static/js/ca.js | 185.57 kB | 0% static/js/da.js | 104.66 kB | 0% static/js/de.js | 177.58 kB | 0% static/js/en-GB.js | 7.16 kB | 0% static/js/en.js | 170.68 kB | 0% static/js/es.js | 172.13 kB | 0% static/js/fr.js | 177.57 kB | 0% static/js/indexeddb-main-thread-worker-e59fee74.js | 13.46 kB | 0% static/js/it.js | 168.97 kB | 0% static/js/narrow.js | 354.12 kB | 0% static/js/nb-NO.js | 154.72 kB | 0% static/js/nl.js | 111.58 kB | 0% static/js/pl.js | 88.34 kB | 0% static/js/pt-BR.js | 180.5 kB | 0% static/js/resize-observer.js | 18.03 kB | 0% static/js/sv.js | 80.58 kB | 0% static/js/th.js | 179.94 kB | 0% static/js/theme.js | 484.67 kB | 0% static/js/uk.js | 213.14 kB | 0% static/js/useTransactionBatchActions.js | 4.29 MB | 0% static/js/wide.js | 418 B | 0% static/js/workbox-window.prod.es5.js | 7.28 kB | 0% </div> </details> --- #### loot-core **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 1 | 4.83 MB | 0% <details> <summary>View detailed bundle breakdown</summary> <div> **Added** No assets were added **Removed** No assets were removed **Bigger** No assets were bigger **Smaller** No assets were smaller **Unchanged** Asset | File Size | % Changed ----- | --------- | --------- kcab.worker.Dmj0rSrb.js | 4.83 MB | 0% </div> </details> --- #### api **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 4 | 4.06 MB | 0% <details> <summary>View detailed bundle breakdown</summary> <div> **Added** No assets were added **Removed** No assets were removed **Bigger** No assets were bigger **Smaller** No assets were smaller **Unchanged** Asset | File Size | % Changed ----- | --------- | --------- index.js | 3.84 MB | 0% from-Bl-Hslp4.js | 167.73 kB | 0% multipart-parser-BnDysoMr.js | 8.1 kB | 0% src-iMkUmuwR.js | 43.64 kB | 0% </div> </details> --- #### cli **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 1 | 7.88 MB | 0% <details> <summary>View detailed bundle breakdown</summary> <div> **Added** No assets were added **Removed** No assets were removed **Bigger** No assets were bigger **Smaller** No assets were smaller **Unchanged** Asset | File Size | % Changed ----- | --------- | --------- cli.js | 7.88 MB | 0% </div> </details> </details> <!--- bundlestats-action-comment key:combined end ---> --- <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-05-01 03:41:02 -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#56110