diff --git a/app/views/manage_products/_form.rhtml b/app/views/manage_products/_form.rhtml index 283e038..d0ad3eb 100644 --- a/app/views/manage_products/_form.rhtml +++ b/app/views/manage_products/_form.rhtml @@ -3,7 +3,7 @@ <% form_for :product, @product, :html => {:multipart => true }, :url => {:action => mode} do |f| %> <%= display_form_field( _('Name:'), f.text_field(:name) ) %> <%= display_form_field( _('Price:'), f.text_field(:price) ) %> - <%= display_form_field( _('Description:'), f.text_area(:description) ) %> + <%= display_form_field( _('Description:'), f.text_area(:description, :rows => 10) ) %> <%= display_form_field( _('Image:'), (render :partial => @product.image && @product.image.valid? ? 'show_thumbnail' : 'change_image') ) %>
-- libgit2 0.21.2