This is an automated email from the ASF dual-hosted git repository.
beto 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 eec54affc3 fix: hidrate datasetsStatus (#32211)
eec54affc3 is described below
commit eec54affc352f34bcaaab914df456dcc147dc6b2
Author: Beto Dealmeida <[email protected]>
AuthorDate: Tue Feb 11 09:50:45 2025 -0500
fix: hidrate datasetsStatus (#32211)
---
superset-frontend/src/dashboard/actions/hydrate.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/superset-frontend/src/dashboard/actions/hydrate.js
b/superset-frontend/src/dashboard/actions/hydrate.js
index 55754b1c27..693e208fea 100644
--- a/superset-frontend/src/dashboard/actions/hydrate.js
+++ b/superset-frontend/src/dashboard/actions/hydrate.js
@@ -310,7 +310,8 @@ export const hydrateDashboard =
isRefreshing: false,
isFiltersRefreshing: false,
activeTabs: activeTabs || dashboardState?.activeTabs || [],
- datasetsStatus: ResourceStatus.Loading,
+ datasetsStatus:
+ dashboardState?.datasetsStatus || ResourceStatus.Loading,
},
dashboardLayout,
},