X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/122fba47e0b0629ebb449c5206ba400021bc6de1..aa2fde93e604c3f04b3a228d68b9627d79e6ba76:/src/routes/route-change-handlers.ts diff --git a/src/routes/route-change-handlers.ts b/src/routes/route-change-handlers.ts index b43e84bb72..400ddc8854 100644 --- a/src/routes/route-change-handlers.ts +++ b/src/routes/route-change-handlers.ts @@ -47,6 +47,7 @@ const handleLocationChange = (store: RootStore) => ({ pathname }: Location) => { const groupDetailsMatch = Routes.matchGroupDetailsRoute(pathname); const linksMatch = Routes.matchLinksRoute(pathname); const collectionsContentAddressMatch = Routes.matchCollectionsContentAddressRoute(pathname); + const allProcessesMatch = Routes.matchAllProcessesRoute(pathname); store.dispatch(dialogActions.CLOSE_ALL_DIALOGS()); store.dispatch(contextMenuActions.CLOSE_CONTEXT_MENU()); @@ -108,5 +109,7 @@ const handleLocationChange = (store: RootStore) => ({ pathname }: Location) => { store.dispatch(WorkbenchActions.loadLinks); } else if (collectionsContentAddressMatch) { store.dispatch(WorkbenchActions.loadCollectionContentAddress); + } else if (allProcessesMatch) { + store.dispatch(WorkbenchActions.loadAllProcesses()); } }; \ No newline at end of file