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 | 13 | %br |
14 | 14 | .form-group |
15 | 15 | = f.label :title, class: 'control-label' do |
16 | - %strong= "Subject *" | |
16 | + %strong= 'Title *' | |
17 | 17 | .col-sm-10 |
18 | 18 | = f.text_field :title, maxlength: 255, class: "form-control js-gfm-input", autofocus: true, required: true |
19 | 19 | .form-group |
20 | - = f.label :description, "Details", class: 'control-label' | |
20 | + = f.label :description, 'Description', class: 'control-label' | |
21 | 21 | .col-sm-10 |
22 | 22 | = f.text_area :description, class: "form-control js-gfm-input", rows: 14 |
23 | 23 | %p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}. | ... | ... |