X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1f9a8ec32f818d8e78d683ad5569b9e4ae0f693a..c382494c58a296a0302e774bae8783e03a042174:/src/views/process-panel/process-panel-root.tsx diff --git a/src/views/process-panel/process-panel-root.tsx b/src/views/process-panel/process-panel-root.tsx index 52c0f45151..73f71e5e0a 100644 --- a/src/views/process-panel/process-panel-root.tsx +++ b/src/views/process-panel/process-panel-root.tsx @@ -23,6 +23,7 @@ export interface ProcessPanelRootActionProps { onContextMenu: (event: React.MouseEvent, process: Process) => void; onToggle: (status: string) => void; openProcessInputDialog: (uuid: string) => void; + navigateToOutput: (uuid: string) => void; } export type ProcessPanelRootProps = ProcessPanelRootDataProps & ProcessPanelRootActionProps; @@ -34,7 +35,8 @@ export const ProcessPanelRoot = ({ process, ...props }: ProcessPanelRootProps) = props.onContextMenu(event, process)} - openProcessInputDialog={props.openProcessInputDialog} /> + openProcessInputDialog={props.openProcessInputDialog} + navigateToOutput={props.navigateToOutput} />