X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/b9cd512debf45e62d9b81a12b4ac64fde998c356..e4b54c3b5d99c99553e319ead28c3aa8dcd6eecc:/src/views/process-panel/process-information-card.tsx diff --git a/src/views/process-panel/process-information-card.tsx b/src/views/process-panel/process-information-card.tsx index 08131266..e5d15e72 100644 --- a/src/views/process-panel/process-information-card.tsx +++ b/src/views/process-panel/process-information-card.tsx @@ -68,12 +68,13 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ export interface ProcessInformationCardDataProps { process: Process; onContextMenu: (event: React.MouseEvent) => void; + openProcessInputDialog: (uuid: string) => void; } type ProcessInformationCardProps = ProcessInformationCardDataProps & WithStyles; export const ProcessInformationCard = withStyles(styles, { withTheme: true })( - ({ classes, process, onContextMenu, theme }: ProcessInformationCardProps) => + ({ classes, process, onContextMenu, theme, openProcessInputDialog }: ProcessInformationCardProps) => - + onContextMenu(event)}> @@ -120,7 +121,9 @@ export const ProcessInformationCard = withStyles(styles, { withTheme: true })( - + openProcessInputDialog(process.containerRequest.uuid)}> + +