Skip to content

Commit

Permalink
fix: import meta of non custom report widgets (actualbudget#3626)
Browse files Browse the repository at this point in the history
  • Loading branch information
UnderKoen authored Oct 10, 2024
1 parent 23de23b commit 3301cfa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/loot-core/src/server/dashboard/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ async function importDashboard({ filepath }: { filepath: string }) {
y: widget.y,
meta: isExportedCustomReportWidget(widget)
? { id: widget.meta.id }
: null,
: widget.meta,
}),
),

Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/3626.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [UnderKoen]
---

Fix importing of non custom reports widgets on the (experimental) reports page.

0 comments on commit 3301cfa

Please sign in to comment.