diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-10-25 10:55:00 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-10-25 10:55:00 +0000 |
commit | 8584ab80f28e170fc2a563fbbc3dfa89715c61ff (patch) | |
tree | 1d7907d2512dcc183f166f54cd1a288f5d03608d /app/views | |
parent | 57a22c346467ca6666d3a6dc9f0a9134447bd58c (diff) | |
download | redmine-8584ab80f28e170fc2a563fbbc3dfa89715c61ff.tar.gz redmine-8584ab80f28e170fc2a563fbbc3dfa89715c61ff.zip |
Enlarge custom field name input.
git-svn-id: http://svn.redmine.org/redmine/trunk@14752 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/custom_fields/_form.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/custom_fields/_form.html.erb b/app/views/custom_fields/_form.html.erb index c5e2824c5..99fffadeb 100644 --- a/app/views/custom_fields/_form.html.erb +++ b/app/views/custom_fields/_form.html.erb @@ -3,7 +3,7 @@ <div class="splitcontentleft"> <div class="box tabular"> <p><%= f.select :field_format, custom_field_formats_for_select(@custom_field), {}, :disabled => !@custom_field.new_record? %></p> -<p><%= f.text_field :name, :required => true %></p> +<p><%= f.text_field :name, :size => 50, :required => true %></p> <p><%= f.text_area :description, :rows => 7 %></p> <% if @custom_field.format.multiple_supported %> |