X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cf315eea954e291f56999eb5dcdec559a08e70c0..44c8f9ed561513b607d3eca752ad3e1efd376f56:/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..2a9b3882e8 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, @@ -208,6 +211,7 @@ export const ProcessPanelRoot = withStyles(styles)(