X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/4bb9d50b428773c4712e8eebdb6756f45efb06f6..274f2f9408e4553643af1b8154050f052132714e:/src/views/run-process-panel/run-process-inputs-form.tsx diff --git a/src/views/run-process-panel/run-process-inputs-form.tsx b/src/views/run-process-panel/run-process-inputs-form.tsx index 37349a6e..e6a504db 100644 --- a/src/views/run-process-panel/run-process-inputs-form.tsx +++ b/src/views/run-process-panel/run-process-inputs-form.tsx @@ -7,7 +7,7 @@ import { reduxForm, InjectedFormProps } from 'redux-form'; import { CommandInputParameter, CWLType, IntCommandInputParameter, BooleanCommandInputParameter, FileCommandInputParameter, DirectoryCommandInputParameter, DirectoryArrayCommandInputParameter, FloatArrayCommandInputParameter, IntArrayCommandInputParameter } from '~/models/workflow'; import { IntInput } from '~/views/run-process-panel/inputs/int-input'; import { StringInput } from '~/views/run-process-panel/inputs/string-input'; -import { StringCommandInputParameter, FloatCommandInputParameter, isPrimitiveOfType, File, Directory, WorkflowInputsData, EnumCommandInputParameter, isArrayOfType, StringArrayCommandInputParameter, FileArrayCommandInputParameter } from '../../models/workflow'; +import { StringCommandInputParameter, FloatCommandInputParameter, isPrimitiveOfType, WorkflowInputsData, EnumCommandInputParameter, isArrayOfType, StringArrayCommandInputParameter, FileArrayCommandInputParameter } from '../../models/workflow'; import { FloatInput } from '~/views/run-process-panel/inputs/float-input'; import { BooleanInput } from './inputs/boolean-input'; import { FileInput } from './inputs/file-input'; @@ -35,7 +35,7 @@ const inputsSelector = (props: RunProcessInputFormProps) => const initialValuesSelector = createSelector( inputsSelector, inputs => inputs.reduce( - (values, input) => ({ ...values, [input.id]: input.default }), + (values, input) => ({ ...values, [input.id]: input.value || input.default }), {})); const propsSelector = createStructuredSelector({ @@ -89,10 +89,10 @@ const getInputComponent = (input: CommandInputParameter) => { return ; case isPrimitiveOfType(input, CWLType.FILE): - return ; + return ; case isPrimitiveOfType(input, CWLType.DIRECTORY): - return ; + return ; case typeof input.type === 'object' && !(input.type instanceof Array) &&