set default page size to 200 for getting tasks for a workflow run (#634)
This commit is contained in:
@@ -41,7 +41,7 @@ function WorkflowRun() {
|
|||||||
queryFn: async () => {
|
queryFn: async () => {
|
||||||
const client = await getClient(credentialGetter);
|
const client = await getClient(credentialGetter);
|
||||||
return client
|
return client
|
||||||
.get(`/tasks?workflow_run_id=${workflowRunId}`)
|
.get(`/tasks?workflow_run_id=${workflowRunId}&page_size=200`)
|
||||||
.then((response) => response.data);
|
.then((response) => response.data);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user