mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
fix(standalone): Ensure correct URL param value for standalone mode (#33234)
This commit is contained in:
committed by
Michael S. Molina
parent
692d47c79d
commit
5b178dfbc7
@@ -135,7 +135,7 @@ class Superset(BaseSupersetView):
|
||||
endpoint = f"/explore/?form_data={form_data}"
|
||||
|
||||
if ReservedUrlParameters.is_standalone_mode():
|
||||
endpoint += f"&{ReservedUrlParameters.STANDALONE}=true"
|
||||
endpoint += f"&{ReservedUrlParameters.STANDALONE.value}=true"
|
||||
return redirect(endpoint)
|
||||
|
||||
def get_query_string_response(self, viz_obj: BaseViz) -> FlaskResponse:
|
||||
|
||||
Reference in New Issue
Block a user