You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2022/02/24 06:29:39 UTC

[superset] 01/01: add force condition for exporting csv

This is an automated email from the ASF dual-hosted git repository.

hugh pushed a commit to branch 2nd-cache-csv
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 3ba2eeec375833c03511532f0408b80c991efc16
Author: hughhhh <hu...@gmail.com>
AuthorDate: Wed Feb 23 22:27:59 2022 -0800

    add force condition for exporting csv
---
 superset-frontend/src/dashboard/components/gridComponents/Chart.jsx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx b/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx
index d434155..0137349 100644
--- a/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx
+++ b/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx
@@ -274,6 +274,7 @@ export default class Chart extends React.Component {
         : this.props.formData,
       resultType: 'full',
       resultFormat: 'csv',
+      force: true,
     });
   }