X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5b0d61f40100d50a53b460e397667d1ac85e174d..8d3cf07be66fb6b8a58c3999783ebc753c30428f:/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)(