Dashboards: Prevent saving to a non-existent folder (#103503)

This commit is contained in:
Stephanie Hingtgen
2025-04-07 09:02:20 +03:00
committed by GitHub
parent ed9b649ed6
commit 8cd6f837a5
4 changed files with 14 additions and 3 deletions
@@ -90,6 +90,8 @@ func (d *dashboardStore) ValidateDashboardBeforeSave(ctx context.Context, dash *
if folderIdFound {
dash.FolderID = existing.ID // nolint:staticcheck
} else {
return dashboards.ErrDashboardFolderNotFound
}
}