mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
fix(standalone): Ensure correct URL param value for standalone mode (#33234)
This commit is contained in:
@@ -135,7 +135,7 @@ class Superset(BaseSupersetView):
|
||||
endpoint_params = {"form_data": f"{form_data}"}
|
||||
|
||||
if ReservedUrlParameters.is_standalone_mode():
|
||||
endpoint_params[ReservedUrlParameters.STANDALONE] = "true"
|
||||
endpoint_params[ReservedUrlParameters.STANDALONE.value] = "true"
|
||||
return redirect(url_for("ExploreView.root", **endpoint_params))
|
||||
|
||||
def get_query_string_response(self, viz_obj: BaseViz) -> FlaskResponse:
|
||||
|
||||
Reference in New Issue
Block a user