mirror of
https://github.com/apache/superset.git
synced 2026-07-26 08:32:42 +00:00
fix(dashboard): let CSV exports use query cache instead of always force-querying (#41469)
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
committed by
GitHub
parent
9e50d9eca6
commit
ee524b3471
@@ -227,7 +227,10 @@ export const buildQuery: BuildQuery<TableChartFormData> = (
|
||||
formData?.result_type === 'results');
|
||||
|
||||
if (isDownloadQuery) {
|
||||
moreProps.row_limit = Number(formDataCopy.row_limit) || 0;
|
||||
moreProps.row_limit =
|
||||
formDataCopy.row_limit != null
|
||||
? Number(formDataCopy.row_limit)
|
||||
: undefined;
|
||||
moreProps.row_offset = 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user