From 874af8e3cf9cb2e0a0a151f3e024c7bdfe8855f6 Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Mon, 27 Jan 2020 16:49:56 -0300 Subject: [PATCH] 16086: Fixes inputs retrieval from workflow mount. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- src/store/processes/process-input-actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/processes/process-input-actions.ts b/src/store/processes/process-input-actions.ts index 7e22b53f..37bfbc5f 100644 --- a/src/store/processes/process-input-actions.ts +++ b/src/store/processes/process-input-actions.ts @@ -28,7 +28,7 @@ export const openProcessInputDialog = (processUuid: string) => }; const getInputsFromWFMount = (process: Process) => { - if (!process || !process.containerRequest[MOUNT_PATH_CWL_WORKFLOW] ) { return undefined; } + if (!process || !process.containerRequest.mounts[MOUNT_PATH_CWL_WORKFLOW] ) { return undefined; } const mnt = process.containerRequest.mounts[MOUNT_PATH_CWL_WORKFLOW] as JSONMount; return getWorkflowInputs(mnt.content); }; \ No newline at end of file -- 2.30.2