X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7a2e9199172a3c102e8a6c7b723fd44bc031bda4..2bbea832f0a7a16e70b85b2e2ad9ca4637a80118:/services/workbench2/src/views/process-panel/process-panel-root.tsx diff --git a/services/workbench2/src/views/process-panel/process-panel-root.tsx b/services/workbench2/src/views/process-panel/process-panel-root.tsx index 774e572cc9..21f38b0938 100644 --- a/services/workbench2/src/views/process-panel/process-panel-root.tsx +++ b/services/workbench2/src/views/process-panel/process-panel-root.tsx @@ -24,6 +24,7 @@ import { ProcessCmdCard } from "./process-cmd-card"; import { ContainerRequestResource } from "models/container-request"; import { OutputDetails, NodeInstanceType } from "store/process-panel/process-panel"; import { NotFoundView } from 'views/not-found-panel/not-found-panel'; +import { CollectionFile } from 'models/collection-file'; type CssRules = "root"; @@ -45,6 +46,7 @@ export interface ProcessPanelRootDataProps { outputDefinitions: CommandOutputParameter[]; outputParams: ProcessIOParameter[] | null; nodeInfo: NodeInstanceType | null; + usageReport: string | null; } export interface ProcessPanelRootActionProps { @@ -87,6 +89,7 @@ export const ProcessPanelRoot = withStyles(styles)( outputDefinitions, outputParams, nodeInfo, + usageReport, loadInputs, loadOutputs, loadNodeJson, @@ -195,6 +198,7 @@ export const ProcessPanelRoot = withStyles(styles)(