Browse Source

Fix language selector on preferences page (#2794)

closed-social-glitch-2
AA4ch1 7 years ago
committed by Matt Jankowski
parent
commit
a50a87457e
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      app/views/settings/preferences/show.html.haml

+ 6
- 1
app/views/settings/preferences/show.html.haml View File

@ -5,7 +5,12 @@
= render 'shared/error_messages', object: current_user = render 'shared/error_messages', object: current_user
.fields-group .fields-group
= f.input :locale, collection: I18n.available_locales, wrapper: :with_label, include_blank: false, label_method: lambda { |locale| human_locale(locale) }
= f.input :locale,
collection: I18n.available_locales,
wrapper: :with_label,
include_blank: false,
label_method: lambda { |locale| human_locale(locale) },
selected: I18n.locale
= f.input :allowed_languages, = f.input :allowed_languages,
collection: I18n.available_locales, collection: I18n.available_locales,

Loading…
Cancel
Save