From f54f8931be128058bf3e64d92643c96fb82fd3b6 Mon Sep 17 00:00:00 2001 From: Elizabeth Thompson Date: Fri, 12 Nov 2021 17:38:26 -0800 Subject: [PATCH] use full resultType with csv download on chart in dashboard --- .../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 b77df1b699f5d..93c6d6ea5d6d5 100644 --- a/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx +++ b/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx @@ -252,7 +252,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', }); }