use full results as csv type (#17194)

This commit is contained in:
Elizabeth Thompson 2021-10-25 09:36:10 -07:00 committed by GitHub
parent 4c96ae76e3
commit 08aab3b399
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -124,7 +124,7 @@ const ExploreActionButtons = (props: ExploreActionButtonsProps) => {
const doExportCSV = canDownloadCSV const doExportCSV = canDownloadCSV
? exportChart.bind(this, { ? exportChart.bind(this, {
formData: latestQueryFormData, formData: latestQueryFormData,
resultType: 'results', resultType: 'full',
resultFormat: 'csv', resultFormat: 'csv',
}) })
: null; : null;