rusackas commented on issue #25970: URL: https://github.com/apache/superset/issues/25970#issuecomment-4043475705
The root cause seems to be that the auto-refresh timer is initialized inside the `DashboardHeader` component, so when standalone mode or `hideTitle: true` hides the header, the timer never gets a chance to start. This looks like a design coupling issue — ideally, auto-refresh behavior would be independent of whether the header is rendered. A good fix could involve moving the auto-refresh initialization out of `DashboardHeader` and into the dashboard container or a dedicated hook/effect that runs regardless of header visibility. The relevant frontend code is likely in `superset-frontend/src/dashboard/components/Header/` and the auto-refresh logic within it — might be worth exploring that area first. It would be great to see a PR addressing this! The issue has been around for a while (last activity approximately 5.5 months ago) and is clearly affecting a number of users. If anyone has bandwidth to investigate, the community would really appreciate it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
