fix: import meta of non custom report widgets (#3626)

This commit is contained in:
Koen van Staveren
2024-10-10 19:46:25 +02:00
committed by GitHub
parent 23de23bd4e
commit 3301cfa2fd
2 changed files with 7 additions and 1 deletions

View File

@@ -194,7 +194,7 @@ async function importDashboard({ filepath }: { filepath: string }) {
y: widget.y,
meta: isExportedCustomReportWidget(widget)
? { id: widget.meta.id }
: null,
: widget.meta,
}),
),

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [UnderKoen]
---
Fix importing of non custom reports widgets on the (experimental) reports page.