set default page size to 200 for getting tasks for a workflow run (#634)

This commit is contained in:
Kerem Yilmaz
2024-07-23 16:07:59 -07:00
committed by GitHub
parent cdb098699f
commit 80b0bf6bef

View File

@@ -41,7 +41,7 @@ function WorkflowRun() {
queryFn: async () => {
const client = await getClient(credentialGetter);
return client
.get(`/tasks?workflow_run_id=${workflowRunId}`)
.get(`/tasks?workflow_run_id=${workflowRunId}&page_size=200`)
.then((response) => response.data);
},
});