[ARVADOS-WORKBENCH2] updated: 1.2.0-828-g6f31673
Git user
git at public.curoverse.com
Fri Nov 9 07:16:10 EST 2018
Summary of changes:
src/views-components/process-input-dialog/process-input-dialog.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
via 6f316731d603520d6e911641447ffb74f0cc6b61 (commit)
from 0eaad7ee985d2534e030e2d2839392435c33bba2 (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 6f316731d603520d6e911641447ffb74f0cc6b61
Author: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
Date: Fri Nov 9 13:15:56 2018 +0100
cr change
Feature #14129
Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
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 a639fa8..bbbd97f 100644
--- a/src/views-components/process-input-dialog/process-input-dialog.tsx
+++ b/src/views-components/process-input-dialog/process-input-dialog.tsx
@@ -33,10 +33,10 @@ export const ProcessInputDialog = withDialog(PROCESS_INPUT_DIALOG_NAME)(
const getInputs = (data: any) =>
data && data.mounts.varLibCwlWorkflowJson ? data.mounts.varLibCwlWorkflowJson.content.graph[1].inputs.map((it: any) => (
- { type: it.type, id: it.id, label: it.label, value: getValue(it.id, data.mounts.varLibCwlCwlInputJson.content), disabled: true }
+ { type: it.type, id: it.id, label: it.label, value: getInputValue(it.id, data.mounts.varLibCwlCwlInputJson.content), disabled: true }
)) : [];
-const getValue = (id: string, data: any) => {
+const getInputValue = (id: string, data: any) => {
switch (id) {
case "#main/example_flag":
return data.exampleFlag;
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list