X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/0534b585de71147120e880fe670ebd0e61dcf68f..5da46a24f0381fb708e8b06f8daba6c9df6cd274:/src/views/run-process-panel/inputs/project-input.tsx diff --git a/src/views/run-process-panel/inputs/project-input.tsx b/src/views/run-process-panel/inputs/project-input.tsx index ef6d08f4..97028fc9 100644 --- a/src/views/run-process-panel/inputs/project-input.tsx +++ b/src/views/run-process-panel/inputs/project-input.tsx @@ -24,19 +24,20 @@ export type ProjectCommandInputParameter = GenericCommandInputParameter (value === undefined); export interface ProjectInputProps { + required?: boolean; input: ProjectCommandInputParameter; options?: { showOnlyOwned: boolean, showOnlyWritable: boolean }; } type DialogContentCssRules = 'root' | 'pickerWrapper'; -export const ProjectInput = ({ input, options }: ProjectInputProps) => +export const ProjectInput = ({ required, input, options }: ProjectInputProps) => ;