Commit b84c3222d7aeb9ece9d4c2f4ad36b0d0dae21696
Committed by
Fabio Teixeira
1 parent
bc747a43
Exists in
master
and in
3 other branches
Fix size of the name and corporate name fields
Signed-off-by: Gabriela Navarro <navarro1703@gmail.com>
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
views/gov_user_plugin/_institution.html.erb
... | ... | @@ -40,14 +40,14 @@ |
40 | 40 | </div> |
41 | 41 | </span> |
42 | 42 | |
43 | - <%= required f.text_field(:name, :value => params[:community][:name]) %> | |
43 | + <%= required f.text_field(:name, :value => params[:community][:name], :size => 55) %> | |
44 | 44 | <%= content_tag :span, _("Institution name already exists"), :id=>"already_exists_text", :class=>"errorExplanation hide-field" %> |
45 | 45 | |
46 | 46 | <div class= <%= @error_corporate_name %> > |
47 | 47 | <span class='required-field'> |
48 | 48 | <div class="formfield type-text"> |
49 | 49 | <%= inst.label "corporate_name", _("Corporate Name"), :class=>"formlabel" %> |
50 | - <%= required inst.text_field(:corporate_name, :value => params[:institutions][:corporate_name]) %> | |
50 | + <%= required inst.text_field(:corporate_name, :value => params[:institutions][:corporate_name], :size => 55) %> | |
51 | 51 | </div> |
52 | 52 | </span> |
53 | 53 | </div> | ... | ... |