refs #master quick fix for workbench-actions
[arvados.git] / src / store / workbench / workbench-actions.ts
index 7077f414e5e2c1703c63f81107cae7a34aab9c65..036f4a3469448fd64f2b04151907bc6309ebe901 100644 (file)
@@ -197,9 +197,9 @@ export const loadProcess = (uuid: string) =>
 export const loadProcessLog = (uuid: string) =>
     async (dispatch: Dispatch) => {
         const process = await dispatch<any>(processesActions.loadProcess(uuid));
-        await dispatch<any>(activateSidePanelTreeItem(process.containerRequest.ownerUuid));
         dispatch<any>(setProcessBreadcrumbs(uuid));
         dispatch<any>(initProcessLogsPanel(uuid));
+        await dispatch<any>(activateSidePanelTreeItem(process.containerRequest.ownerUuid));
     };
 
 export const resourceIsNotLoaded = (uuid: string) =>