X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/2cfb56ef5060cbad461062690fad650f15c49731..825ea4fce4ba3568f6105c17e83f4769a9323759:/src/views/run-process-panel/inputs/string-array-input.tsx diff --git a/src/views/run-process-panel/inputs/string-array-input.tsx b/src/views/run-process-panel/inputs/string-array-input.tsx index da03f296..39dbe0af 100644 --- a/src/views/run-process-panel/inputs/string-array-input.tsx +++ b/src/views/run-process-panel/inputs/string-array-input.tsx @@ -30,7 +30,7 @@ const validationSelector = createSelector( : undefined ); -const required = (value: string[]) => +const required = (value: string[] = []) => value.length > 0 ? undefined : ERROR_MESSAGE; @@ -42,15 +42,17 @@ const StringArrayInputComponent = (props: GenericInputProps) => class InputComponent extends React.PureComponent{ render() { + const { commandInput, input, meta } = this.props; return ; }