Skip to content

Commit

Permalink
fix: Pass slice_id in Explore get (#21696)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina committed Oct 6, 2022
1 parent 1cbf066 commit f1fbaf8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion superset/explore/commands/get.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ def run(self) -> Optional[Dict[str, Any]]:
)

form_data, slc = get_form_data(
use_slice_data=True, initial_form_data=initial_form_data
slice_id=self._slice_id,
use_slice_data=True,
initial_form_data=initial_form_data,
)
try:
self._dataset_id, self._dataset_type = get_datasource_info(
Expand Down

0 comments on commit f1fbaf8

Please sign in to comment.