From 39558705b4f7bff14c688bf427999b1200f508b0 Mon Sep 17 00:00:00 2001 From: Elizabeth Thompson Date: Mon, 25 Oct 2021 09:36:10 -0700 Subject: [PATCH] use full results as csv type (#17194) (cherry picked from commit 08aab3b399f1b315df3b5dc54777e8131d6615c3) --- .../src/explore/components/ExploreActionButtons.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/explore/components/ExploreActionButtons.tsx b/superset-frontend/src/explore/components/ExploreActionButtons.tsx index c01305a69191..fa933a8abd88 100644 --- a/superset-frontend/src/explore/components/ExploreActionButtons.tsx +++ b/superset-frontend/src/explore/components/ExploreActionButtons.tsx @@ -124,7 +124,7 @@ const ExploreActionButtons = (props: ExploreActionButtonsProps) => { const doExportCSV = canDownloadCSV ? exportChart.bind(this, { formData: latestQueryFormData, - resultType: 'results', + resultType: 'full', resultFormat: 'csv', }) : null;