Skip to content

Commit

Permalink
Fix filter_box
Browse files Browse the repository at this point in the history
  • Loading branch information
kgabryje committed Mar 2, 2023
1 parent ac87730 commit b6f73d8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions superset/common/query_context_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ def create(

result_type = result_type or ChartDataResultType.FULL
result_format = result_format or ChartDataResultFormat.JSON
for query_obj in queries:
if query_obj.get("datasource", None) is not None:
del query_obj["datasource"]
queries_ = [
self._process_query_object(
datasource_model_instance,
Expand Down

0 comments on commit b6f73d8

Please sign in to comment.