X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/013ec8ccb46d5438aca45dc5173f838ec863ca7b..ba27bdf218da8894df4ffa6174c67c1fb3e70c81:/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 788f253994..08131266fe 100644 --- a/src/views/process-panel/process-information-card.tsx +++ b/src/views/process-panel/process-information-card.tsx @@ -70,7 +70,7 @@ export interface ProcessInformationCardDataProps { onContextMenu: (event: React.MouseEvent) => void; } -type ProcessInformationCardProps = ProcessInformationCardDataProps & WithStyles; +type ProcessInformationCardProps = ProcessInformationCardDataProps & WithStyles; export const ProcessInformationCard = withStyles(styles, { withTheme: true })( ({ classes, process, onContextMenu, theme }: ProcessInformationCardProps) => @@ -86,11 +86,13 @@ export const ProcessInformationCard = withStyles(styles, { withTheme: true })( - onContextMenu(event)}> - - + + onContextMenu(event)}> + + + } title={ @@ -101,9 +103,9 @@ export const ProcessInformationCard = withStyles(styles, { withTheme: true })( } subheader={ - + - {process.containerRequest.description || '(no-description)'} + {getDescription(process)} } /> @@ -123,4 +125,7 @@ export const ProcessInformationCard = withStyles(styles, { withTheme: true })( -); \ No newline at end of file +); + +const getDescription = (process: Process) => + process.containerRequest.description || '(no-description)';