diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-12-02 14:40:18 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-12-02 14:41:56 +0100 |
commit | cdd4c331b36e75b2b01a1648f1e5563c4afc5a49 (patch) | |
tree | 01fcad815af9bdf75ac5dda9b8f98fd622863e25 /app/views/profiles | |
parent | dccc22775472a7053b85f496011808c35fd6d62c (diff) | |
download | gitlab-ce-cdd4c331b36e75b2b01a1648f1e5563c4afc5a49.tar.gz |
Use select2 instead of regular selectbox for profile public email
Diffstat (limited to 'app/views/profiles')
-rw-r--r-- | app/views/profiles/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/profiles/show.html.haml b/app/views/profiles/show.html.haml index faab12ca0b9..9459d8a6295 100644 --- a/app/views/profiles/show.html.haml +++ b/app/views/profiles/show.html.haml @@ -43,7 +43,7 @@ .form-group = f.label :public_email, class: "control-label" .col-sm-10 - = f.select :public_email, options_for_select(@user.all_emails, selected: @user.public_email), {include_blank: 'Do not show in profile'}, class: "form-control" + = f.select :public_email, options_for_select(@user.all_emails, selected: @user.public_email), {include_blank: 'Do not show on profile'}, class: "select2" %span.help-block This email will be displayed on your public profile. .form-group = f.label :skype, class: "control-label" |