X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/efcea950b84b26c4cbbdf4df8fd5c88f6c846da9..31e84a9315728c2f58a26bf0e9e1d2b38326fb86:/src/views-components/form-fields/project-form-fields.tsx diff --git a/src/views-components/form-fields/project-form-fields.tsx b/src/views-components/form-fields/project-form-fields.tsx index dc1e1612..3f576ab1 100644 --- a/src/views-components/form-fields/project-form-fields.tsx +++ b/src/views-components/form-fields/project-form-fields.tsx @@ -11,6 +11,7 @@ import { RootState } from "~/store/store"; interface ProjectNameFieldProps { validate: Validator[]; + label?: string; } // Validation behavior depends on the value of ForwardSlashNameSubstitution. @@ -32,7 +33,7 @@ export const ProjectNameField = connect( name='name' component={TextField} validate={props.validate} - label="Project Name" + label={props.label || "Project Name"} autoFocus={true} /> );