Dashboard page stuck on loading after upgrading superset to 6.1.0 #41444
Replies: 1 comment 6 replies
|
Hi @Dhruvin4530, this is a commonly reported issue after upgrading Superset. Based on similar reports, here are the most likely causes and troubleshooting steps: 1. Stale browser cache (most common cause) After an upgrade, your browser may still be referencing old JavaScript/CSS chunks from the previous version. Try:
2. Node version mismatch during frontend build Superset 6.1.0 requires Node ^20.16.0 (recommended v20.18.3). If your frontend assets were built with an older Node version, they may be broken [1]. Rebuild with: npm ci && npm run build3. Dependency version conflicts If upgrading via Docker, stale volumes can leave outdated dependencies (e.g., docker compose down -v
docker compose up --build4. Theme configuration issue If you have a partial 5. Dashboard scrolling regression There was a known regression in 6.x where dashboards taller than the browser window were clipped with no scrollbar (appearing as a blank/black area). This was fixed in PR #41439 [4]. Recommended troubleshooting order:
Could you check your browser console for any error messages? That would help narrow down the exact cause. To reply, just mention @dosu. Docs are dead. Just use Dosu. |
Uh oh!
There was an error while loading. Please reload this page.
Dashboard page stuck on loading after upgrading superset to 6.1.0 & then black out
@dosu Please take a look.
All reactions