mirror of
https://github.com/apache/superset.git
synced 2026-04-21 17:14:57 +00:00
chore: Bump flask libs (#22355)
This commit is contained in:
@@ -219,7 +219,7 @@ export default function DrillDetailPane({
|
||||
useEffect(() => {
|
||||
if (!responseError && !isLoading && !resultsPages.has(pageIndex)) {
|
||||
setIsLoading(true);
|
||||
const jsonPayload = getDrillPayload(formData, filters);
|
||||
const jsonPayload = getDrillPayload(formData, filters) ?? {};
|
||||
const cachePageLimit = Math.ceil(SAMPLES_ROW_LIMIT / PAGE_SIZE);
|
||||
getDatasourceSamples(
|
||||
datasourceType,
|
||||
|
||||
@@ -61,7 +61,7 @@ export const SamplesPane = ({
|
||||
|
||||
if (isRequest && !cache.has(datasource)) {
|
||||
setIsLoading(true);
|
||||
getDatasourceSamples(datasource.type, datasource.id, queryForce)
|
||||
getDatasourceSamples(datasource.type, datasource.id, queryForce, {})
|
||||
.then(response => {
|
||||
setData(ensureIsArray(response.data));
|
||||
setColnames(ensureIsArray(response.colnames));
|
||||
|
||||
Reference in New Issue
Block a user