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
1 changed files with 1 additions and 1 deletions

View File

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