[ARVADOS-WORKBENCH2] created: 1.4.1-250-g874af8e3

Git user git at public.arvados.org
Mon Jan 27 19:51:22 UTC 2020


        at  874af8e3cf9cb2e0a0a151f3e024c7bdfe8855f6 (commit)


commit 874af8e3cf9cb2e0a0a151f3e024c7bdfe8855f6
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date:   Mon Jan 27 16:49:56 2020 -0300

    16086: Fixes inputs retrieval from workflow mount.
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>

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

commit 691afce5b8573b3a89592b506b3a37d615d60bc1
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date:   Mon Jan 27 16:24:25 2020 -0300

    16086: Don't re-parse dates on process information card.
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>

diff --git a/src/views/process-panel/process-information-card.tsx b/src/views/process-panel/process-information-card.tsx
index 8754768b..be1b92a9 100644
--- a/src/views/process-panel/process-information-card.tsx
+++ b/src/views/process-panel/process-information-card.tsx
@@ -131,10 +131,10 @@ export const ProcessInformationCard = withStyles(styles, { withTheme: true })(
                     <Grid item xs={6}>
                         <DetailsAttribute classLabel={classes.label} classValue={classes.value}
                             label='From'
-                            value={process.container ? formatDate(startedAt) : 'N/A'} />
+                            value={startedAt} />
                         <DetailsAttribute classLabel={classes.label} classValue={classes.value}
                             label='To'
-                            value={process.container ? formatDate(finishedAt) : 'N/A'} />
+                            value={finishedAt} />
                         {process.containerRequest.properties.workflowUuid &&
                             <span onClick={() => openWorkflow(process.containerRequest.properties.workflowUuid)}>
                                 <DetailsAttribute classLabel={classes.label} classValue={classNames(classes.value, classes.link)}

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list