From 57bb425fb08fec0e8d8f4e415d08f0d518e26ae3 Mon Sep 17 00:00:00 2001 From: Pat Buxton <45275736+rad-pat@users.noreply.github.com> Date: Mon, 9 Jun 2025 18:33:54 +0100 Subject: [PATCH] fix(dashboard): show dashboard thumbnail images when retrieved (#33726) --- superset-frontend/src/features/dashboards/DashboardCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/features/dashboards/DashboardCard.tsx b/superset-frontend/src/features/dashboards/DashboardCard.tsx index d8d50f5a7f7..2289104f872 100644 --- a/superset-frontend/src/features/dashboards/DashboardCard.tsx +++ b/superset-frontend/src/features/dashboards/DashboardCard.tsx @@ -159,7 +159,7 @@ function DashboardCard({ } url={bulkSelectEnabled ? undefined : dashboard.url} linkComponent={Link} - imgURL={dashboard.thumbnail_url} + imgURL={thumbnailUrl} imgFallbackURL={assetUrl( '/static/assets/images/dashboard-card-fallback.svg', )}