X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c53693847e622ef89ba7d62a93fc7d60dc68e6df..4076b2736c50e6122d3d840f9c1f6f7d2cf81c28:/src/store/workbench/workbench-actions.ts diff --git a/src/store/workbench/workbench-actions.ts b/src/store/workbench/workbench-actions.ts index 97fe549a63..8c7ec9a30f 100644 --- a/src/store/workbench/workbench-actions.ts +++ b/src/store/workbench/workbench-actions.ts @@ -30,6 +30,7 @@ import * as collectionUpdateActions from '~/store/collections/collection-update- import * as collectionMoveActions from '~/store/collections/collection-move-actions'; import * as processesActions from '../processes/processes-actions'; import { getProcess } from '../processes/process'; +import { initProcessLogsPanel } from '../process-logs-panel/process-logs-panel-actions'; export const loadWorkbench = () => @@ -186,9 +187,8 @@ export const loadProcess = (uuid: string) => }; export const loadProcessLog = (uuid: string) => - async (dispatch: Dispatch, getState: () => RootState) => { - dispatch(loadProcess(uuid)); - // ToDo: loadLog(); + async (dispatch: Dispatch) => { + dispatch(initProcessLogsPanel(uuid)); }; export const resourceIsNotLoaded = (uuid: string) =>