X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/153542362119d734c6d9a03d265ac077d1ed33dd..7e05875bc2514dd4df0a1c566ebc634e8a2ae3b8:/src/views/run-process-panel/inputs/generic-input.tsx diff --git a/src/views/run-process-panel/inputs/generic-input.tsx b/src/views/run-process-panel/inputs/generic-input.tsx index 8ca4ec89..963998f1 100644 --- a/src/views/run-process-panel/inputs/generic-input.tsx +++ b/src/views/run-process-panel/inputs/generic-input.tsx @@ -13,12 +13,13 @@ export type GenericInputProps = WrappedFieldProps & { type GenericInputContainerProps = GenericInputProps & { component: React.ComponentType; + required?: boolean; }; export const GenericInput = ({ component: Component, ...props }: GenericInputContainerProps) => { return {getInputLabel(props.commandInput)} @@ -31,4 +32,4 @@ export const GenericInput = ({ component: Component, ...props }: GenericInputCon } ; -}; \ No newline at end of file +};