X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/cd015a3c1aa2511da7c0063125a24065d37799bb..b61a12ca0d14433ddb10a6d6361a18b1f127c98e:/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 4f95d0d8..f8ff8430 100644 --- a/src/views/process-panel/process-panel-root.tsx +++ b/src/views/process-panel/process-panel-root.tsx @@ -15,6 +15,7 @@ import { ProcessDetailsCard } from './process-details-card'; import { getProcessPanelLogs, ProcessLogsPanel } from 'store/process-logs-panel/process-logs-panel'; import { ProcessLogsCard } from './process-log-card'; import { FilterOption } from 'views/process-panel/process-log-form'; +import { ProcessCmdCard } from './process-cmd-card'; type CssRules = 'root'; @@ -37,13 +38,14 @@ export interface ProcessPanelRootActionProps { cancelProcess: (uuid: string) => void; onLogFilterChange: (filter: FilterOption) => void; navigateToLog: (uuid: string) => void; - onLogCopyToClipboard: (uuid: string) => void; + onCopyToClipboard: (uuid: string) => void; } export type ProcessPanelRootProps = ProcessPanelRootDataProps & ProcessPanelRootActionProps & WithStyles; const panelsData: MPVPanelState[] = [ {name: "Details"}, + {name: "Command"}, {name: "Logs", visible: true}, {name: "Subprocesses"}, ]; @@ -59,9 +61,14 @@ export const ProcessPanelRoot = withStyles(styles)( cancelProcess={props.cancelProcess} /> + + +