From 0e4b27530c330085782970a96ce2f18292c7c32e Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Wed, 31 Jan 2024 14:48:41 -0500 Subject: [PATCH] 21440: Always include Collection in the Outputs panel Arvados-DCO-1.1-Signed-off-by: Peter Amstutz --- .../views/process-panel/process-io-card.tsx | 29 +++++++++++++++++-- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/services/workbench2/src/views/process-panel/process-io-card.tsx b/services/workbench2/src/views/process-panel/process-io-card.tsx index c9d0d20501..52efd99087 100644 --- a/services/workbench2/src/views/process-panel/process-io-card.tsx +++ b/services/workbench2/src/views/process-panel/process-io-card.tsx @@ -370,9 +370,9 @@ export const ProcessIOCard = withStyles(styles)( )} {/* Once loaded, either raw or params may still be empty - * Raw when all params are empty - * Params when raw is provided by containerRequest properties but workflow mount is absent for preview - */} + * Raw when all params are empty + * Params when raw is provided by containerRequest properties but workflow mount is absent for preview + */} {!loading && (hasRaw || hasParams) && ( <> } {!forceShowParams && } + {hasOutputCollecton && } {mainProcTabState === 0 && params && hasParams && (
@@ -399,6 +400,28 @@ export const ProcessIOCard = withStyles(styles)(
)} + {mainProcTabState === 2 && hasOutputCollecton && ( + <> + {outputUuid && ( + + Output Collection:{" "} + { + navigateTo(outputUuid || ""); + }} + > + {outputUuid} + + + )} + + + )} + )} {!loading && !hasRaw && !hasParams && ( -- 2.30.2