X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/01a728d112f5728b9552c7e63f074487a4d056f0..98adeb294aa8bf1c1691f70ab095d20a96c0d375:/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 52c0f451..63b6aa4d 100644 --- a/src/views/process-panel/process-panel-root.tsx +++ b/src/views/process-panel/process-panel-root.tsx @@ -23,6 +23,9 @@ export interface ProcessPanelRootActionProps { onContextMenu: (event: React.MouseEvent, process: Process) => void; onToggle: (status: string) => void; openProcessInputDialog: (uuid: string) => void; + navigateToOutput: (uuid: string) => void; + navigateToWorkflow: (uuid: string) => void; + cancelProcess: (uuid: string) => void; } export type ProcessPanelRootProps = ProcessPanelRootDataProps & ProcessPanelRootActionProps; @@ -34,7 +37,11 @@ export const ProcessPanelRoot = ({ process, ...props }: ProcessPanelRootProps) = props.onContextMenu(event, process)} - openProcessInputDialog={props.openProcessInputDialog} /> + openProcessInputDialog={props.openProcessInputDialog} + navigateToOutput={props.navigateToOutput} + openWorkflow={props.navigateToWorkflow} + cancelProcess={props.cancelProcess} + />