16086: Fixes inputs retrieval from workflow mount.
[arvados-workbench2.git] / src / store / processes / process-input-actions.ts
index 7e22b53f1496275b470fdeca5aea63d350fafa40..37bfbc5f24a9d5947b5c1a93875a36b1cb132d45 100644 (file)
@@ -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