From c42ff7972f8879f83de807a411b3e5f84bab3d75 Mon Sep 17 00:00:00 2001 From: Elizabeth Thompson Date: Mon, 15 Nov 2021 09:57:05 -0800 Subject: [PATCH] use full resultType with csv download on chart in dashboard (#17431) (cherry picked from commit 71e3fa1bf350045da9a1c1e89443549c204a3516) --- .../dashboard/components/gridComponents/Chart_spec.jsx | 2 +- .../src/dashboard/components/gridComponents/Chart.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Chart_spec.jsx b/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Chart_spec.jsx index fdbd766f76078..b2acc42766e1c 100644 --- a/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Chart_spec.jsx +++ b/superset-frontend/spec/javascripts/dashboard/components/gridComponents/Chart_spec.jsx @@ -116,7 +116,7 @@ describe('Chart', () => { expect(stubbedExportCSV.lastCall.args[0]).toEqual( expect.objectContaining({ formData: expect.anything(), - resultType: 'results', + resultType: 'full', resultFormat: 'csv', }), ); diff --git a/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx b/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx index 4a86d89f2b41e..3447c982f4c74 100644 --- a/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx +++ b/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx @@ -242,7 +242,7 @@ export default class Chart extends React.Component { formData: isFullCSV ? { ...this.props.formData, row_limit: this.props.maxRows } : this.props.formData, - resultType: 'results', + resultType: 'full', resultFormat: 'csv', }); }