diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-01-20 17:20:34 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-01-20 17:20:34 +0000 |
commit | 0b4a02f607a1eefb89bc37b734375fb7d70afc6c (patch) | |
tree | bb013941166280cb1f23e5c7c7bd32918392a8a5 /app/helpers/custom_fields_helper.rb | |
parent | b6549d763ae7a4dc9ad2f00c7b9d6becc1e39012 (diff) | |
download | redmine-0b4a02f607a1eefb89bc37b734375fb7d70afc6c.tar.gz redmine-0b4a02f607a1eefb89bc37b734375fb7d70afc6c.zip |
Display custom fields in two columns on the issue form.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1086 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers/custom_fields_helper.rb')
-rw-r--r-- | app/helpers/custom_fields_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/custom_fields_helper.rb b/app/helpers/custom_fields_helper.rb index 25389ca63..8792c8c6e 100644 --- a/app/helpers/custom_fields_helper.rb +++ b/app/helpers/custom_fields_helper.rb @@ -28,7 +28,7 @@ module CustomFieldsHelper text_field('custom_value', 'value', :name => field_name, :id => field_id, :size => 10) + calendar_for(field_id) when "text" - text_area 'custom_value', 'value', :name => field_name, :id => field_id, :cols => 60, :rows => 3 + text_area 'custom_value', 'value', :name => field_name, :id => field_id, :rows => 3, :style => 'width:99%' when "bool" check_box 'custom_value', 'value', :name => field_name, :id => field_id when "list" |