summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-12-02 14:40:18 +0100
committerDouwe Maan <douwe@gitlab.com>2015-12-02 14:41:56 +0100
commitcdd4c331b36e75b2b01a1648f1e5563c4afc5a49 (patch)
tree01fcad815af9bdf75ac5dda9b8f98fd622863e25
parentdccc22775472a7053b85f496011808c35fd6d62c (diff)
downloadgitlab-ce-cdd4c331b36e75b2b01a1648f1e5563c4afc5a49.tar.gz
Use select2 instead of regular selectbox for profile public email
-rw-r--r--app/views/profiles/show.html.haml2
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"