Commit 0d3ba71b authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #6774 from cirosantilli/issue-form-rename-fields

Rename issue form tags Subject -> Title and Details -> Description
parents 9c7a9d92 d2b4948a
......@@ -13,11 +13,11 @@
%br
.form-group
= f.label :title, class: 'control-label' do
%strong= "Subject *"
%strong= 'Title *'
.col-sm-10
= f.text_field :title, maxlength: 255, class: "form-control js-gfm-input", autofocus: true, required: true
.form-group
= f.label :description, "Details", class: 'control-label'
= f.label :description, 'Description', class: 'control-label'
.col-sm-10
= f.text_area :description, class: "form-control js-gfm-input", rows: 14
%p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment