dosubot[bot] commented on issue #31937: URL: https://github.com/apache/superset/issues/31937#issuecomment-2603876354
<!-- Greeting --> Hey @thalmis-zt 👋, I'm here to assist you with any bugs, questions, or contributions. Just give me a shout if you need help! <!-- Answer --> I found a similar unsolved discussion titled [Filter from url](https://github.com/apache/superset/discussions/30922) which might be relevant to your issue <sup>[[1]](https://github.com/apache/superset/discussions/30922)</sup>. Regarding your issue, it seems like you are trying to apply filters to a chart by passing them as URL parameters. Superset processes the `form_data` parameter in the URL by replacing it with a `form_data_key`, which is stored in the cache layer. This transformation is handled by the `get_redirect_url` method, which creates a `form_data_key` and modifies the URL accordingly <sup>[[2]](https://github.com/apache/superset/blob/master/superset/views/core.py)</sup>. Additionally, there are specific configurations in Superset that affect the application of URL parameters for chart filters. The `URL_PARAMS` object defines parameters like `preselectFilters`, `nativeFilters`, and `showFilters`, which can influence chart behavior. Make sure these parameters are correctly set in your URL <sup>[[3]](https://github.com/apache/superset/blob/master/superset-frontend/src/constants.ts)</sup>. You might want to verify that the `form_data` is being correctly processed and that the necessary parameters are included in your URL. If the issue persists, consider checking the Superset logs for any errors that might provide more insight. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/140ffa9c-6481-40c0-99c1-f63e6221350c?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/140ffa9c-6481-40c0-99c1-f63e6221350c?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/140ffa9c-6481-40c0-99c1-f63e6221350c?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/140ffa9c-6481-40c0-99c1-f63e6221350c?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/140ffa9c-6481-40c0-99c1-f63e6221350c?feedback_type=hallucination) | [Other](https://app.dosu.dev/response-feedback/140ffa9c-6481-40c0-99c1-f63e6221350c?feedback_type=other)</sup> -- 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]
