Commit 0d3ba71bcb92218585988ca1b9f863a796d6e168
Exists in
spb-stable
and in
3 other branches
Merge pull request #6774 from cirosantilli/issue-form-rename-fields
Rename issue form tags Subject -> Title and Details -> Description
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
app/views/projects/issues/_form.html.haml
@@ -13,11 +13,11 @@ | @@ -13,11 +13,11 @@ | ||
13 | %br | 13 | %br |
14 | .form-group | 14 | .form-group |
15 | = f.label :title, class: 'control-label' do | 15 | = f.label :title, class: 'control-label' do |
16 | - %strong= "Subject *" | 16 | + %strong= 'Title *' |
17 | .col-sm-10 | 17 | .col-sm-10 |
18 | = f.text_field :title, maxlength: 255, class: "form-control js-gfm-input", autofocus: true, required: true | 18 | = f.text_field :title, maxlength: 255, class: "form-control js-gfm-input", autofocus: true, required: true |
19 | .form-group | 19 | .form-group |
20 | - = f.label :description, "Details", class: 'control-label' | 20 | + = f.label :description, 'Description', class: 'control-label' |
21 | .col-sm-10 | 21 | .col-sm-10 |
22 | = f.text_area :description, class: "form-control js-gfm-input", rows: 14 | 22 | = f.text_area :description, class: "form-control js-gfm-input", rows: 14 |
23 | %p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}. | 23 | %p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}. |