[ARVADOS-WORKBENCH2] updated: 1.4.1-254-ga94a57d2

Git user git at public.arvados.org
Tue Jan 28 17:45:01 UTC 2020


Summary of changes:
 src/views-components/process-input-dialog/process-input-dialog.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

       via  a94a57d2dfd24d43c5e927dadf3f5ab35b2899d5 (commit)
      from  cb148df557f0134b641e38dc48d1f0570fb2e285 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit a94a57d2dfd24d43c5e927dadf3f5ab35b2899d5
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date:   Tue Jan 28 14:44:15 2020 -0300

    16086: Splits input id by '/' using the last element for input value lookup.
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>

diff --git a/src/views-components/process-input-dialog/process-input-dialog.tsx b/src/views-components/process-input-dialog/process-input-dialog.tsx
index 6ccf264c..bc3f7ca9 100644
--- a/src/views-components/process-input-dialog/process-input-dialog.tsx
+++ b/src/views-components/process-input-dialog/process-input-dialog.tsx
@@ -42,7 +42,7 @@ const getInputs = (data: any) => {
                 type: it.type,
                 id: it.id,
                 label: it.label,
-                value: data.mounts[MOUNT_PATH_CWL_INPUT].content[it.id.split('#main/')[1]] || [],
+                value: data.mounts[MOUNT_PATH_CWL_INPUT].content[it.id.split('/').pop()] || [],
                 disabled: true
             }))
         : [];

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list