This is an automated email from the ASF dual-hosted git repository.
michaelsmolina pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 57bb425fb0 fix(dashboard): show dashboard thumbnail images when
retrieved (#33726)
57bb425fb0 is described below
commit 57bb425fb08fec0e8d8f4e415d08f0d518e26ae3
Author: Pat Buxton <[email protected]>
AuthorDate: Mon Jun 9 18:33:54 2025 +0100
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 d8d50f5a7f..2289104f87 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',
)}