Removes the 'required' attribute from the 'project name' field
This commit is contained in:
parent
983bd38f91
commit
26995798f0
3 changed files with 7 additions and 2 deletions
|
@ -10,7 +10,7 @@
|
|||
.row
|
||||
.form-group.project-name.col-sm-12
|
||||
= label_tag :name, _('Project name'), class: 'label-bold'
|
||||
= text_field_tag :name, @name, placeholder: "My awesome project", class: "js-project-name form-control input-lg", autofocus: true, required: true
|
||||
= text_field_tag :name, @name, placeholder: "My awesome project", class: "js-project-name form-control input-lg", autofocus: true
|
||||
.form-group.col-12.col-sm-6
|
||||
= label_tag :namespace_id, _('Project URL'), class: 'label-bold'
|
||||
.form-group
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
.form-group.project-name.col-sm-12
|
||||
= f.label :name, class: 'label-bold' do
|
||||
%span= _("Project name")
|
||||
= f.text_field :name, placeholder: "My awesome project", class: "form-control input-lg", autofocus: true, required: true
|
||||
= f.text_field :name, placeholder: "My awesome project", class: "form-control input-lg", autofocus: true
|
||||
.form-group.project-path.col-sm-6
|
||||
= f.label :namespace_id, class: 'label-bold' do
|
||||
%span= s_("Project URL")
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Removes the 'required' attribute from the 'project name' field
|
||||
merge_request: 21770
|
||||
author:
|
||||
type: other
|
Loading…
Reference in a new issue