Commit bb996411335870a4deeac5e6d76d183d1d5a2676

Authored by Victor Costa
1 parent d50d9438

Fix memberships controller tests

Showing 1 changed file with 3 additions and 1 deletions   Show diff stats
app/helpers/application_helper.rb
... ... @@ -1316,7 +1316,9 @@ module ApplicationHelper
1316 1316 end
1317 1317 else
1318 1318 options = options_for_select(templates.collect{ |template| [template.name, template.id]})
1319   - content_tag('div', content_tag('label', _('Profile organization'), :class => 'formlabel') + (select_tag 'profile_data[template_id]', options, :onchange => 'show_fields_for_template(this);'))
  1319 + content_tag('div',
  1320 + content_tag('div', content_tag('label', _('Profile organization'), :class => 'formlabel') + (select_tag 'profile_data[template_id]', options, :onchange => 'show_fields_for_template(this);')),
  1321 + :id => 'template-options')
1320 1322 end
1321 1323 end
1322 1324  
... ...