fix: exporting CSV can't apply pagination #17861 (#20178)

This commit is contained in:
Ilyas
2022-06-02 05:42:51 +01:00
committed by GitHub
parent e5f26313a5
commit d4f320f2a0
4 changed files with 6 additions and 0 deletions

View File

@@ -95,6 +95,7 @@ export const useExploreAdditionalActionsMenu = (
slice,
onOpenInEditor,
onOpenPropertiesModal,
ownState,
) => {
const theme = useTheme();
const { addDangerToast, addSuccessToast } = useToasts();
@@ -132,6 +133,7 @@ export const useExploreAdditionalActionsMenu = (
canDownloadCSV
? exportChart({
formData: latestQueryFormData,
ownState,
resultType: 'full',
resultFormat: 'csv',
})