Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorCiro Santilli <ciro.santilli@gmail.com>2014-04-15 01:36:12 +0400
committerCiro Santilli <ciro.santilli@gmail.com>2014-04-15 01:36:12 +0400
commitd2b4948a1fe606457d2d0e42d9e06f5a4cc1fd91 (patch)
treefb24489cc5019dcd06af0bfd585b30009abd9e31 /app
parent6be82c5e3b65bccc5b951628de34ebe94e06fdec (diff)
Rename issue form tags to match MR and params.
Diffstat (limited to 'app')
-rw-r--r--app/views/projects/issues/_form.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/issues/_form.html.haml b/app/views/projects/issues/_form.html.haml
index 91d0de8e47c..84703229fe6 100644
--- a/app/views/projects/issues/_form.html.haml
+++ b/app/views/projects/issues/_form.html.haml
@@ -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'}.