RamiNoodle733 opened a new pull request, #37744: URL: https://github.com/apache/superset/pull/37744
## Problem When loading a dashboard with a Histogram chart or editing one directly, a Pandas SettingWithCopyWarning appears in the logs: ## Solution Added an explicit DataFrame copy after dropna() to ensure we're modifying an actual DataFrame rather than a view/slice. ## Changes - Added df = df.copy() after dropna() in histogram.py Fixes #36530 -- 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]
