X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/0bc3340cdc59ede7a02552bcc9f22890f0ef4f91..4b961d16b8f8ef8afbd13697a79fe4684acd0416:/src/store/processes/processes-actions.ts diff --git a/src/store/processes/processes-actions.ts b/src/store/processes/processes-actions.ts index 65a9a24c..6f1d23b0 100644 --- a/src/store/processes/processes-actions.ts +++ b/src/store/processes/processes-actions.ts @@ -53,9 +53,11 @@ export const loadSubprocesses = (containerUuid: string) => } }; +const MAX_AMOUNT_OF_SUBPROCESSES = 10000; + export const loadContainerRequests = (filters: string) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { - const { items } = await services.containerRequestService.list({ filters }); + const { items } = await services.containerRequestService.list({ filters, limit: MAX_AMOUNT_OF_SUBPROCESSES }); dispatch(updateResources(items)); return items; };