From b84c3222d7aeb9ece9d4c2f4ad36b0d0dae21696 Mon Sep 17 00:00:00 2001 From: Gabriela Navarro Date: Thu, 16 Apr 2015 08:33:03 -0300 Subject: [PATCH] Fix size of the name and corporate name fields --- views/gov_user_plugin/_institution.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/gov_user_plugin/_institution.html.erb b/views/gov_user_plugin/_institution.html.erb index 09e8ae7..8e56682 100644 --- a/views/gov_user_plugin/_institution.html.erb +++ b/views/gov_user_plugin/_institution.html.erb @@ -40,14 +40,14 @@ - <%= required f.text_field(:name, :value => params[:community][:name]) %> + <%= required f.text_field(:name, :value => params[:community][:name], :size => 55) %> <%= content_tag :span, _("Institution name already exists"), :id=>"already_exists_text", :class=>"errorExplanation hide-field" %>
>
<%= inst.label "corporate_name", _("Corporate Name"), :class=>"formlabel" %> - <%= required inst.text_field(:corporate_name, :value => params[:institutions][:corporate_name]) %> + <%= required inst.text_field(:corporate_name, :value => params[:institutions][:corporate_name], :size => 55) %>
-- libgit2 0.21.2