Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@selenight.nl>2018-11-14 21:09:33 +0300
committerStan Hu <stanhu@gmail.com>2018-11-14 22:03:20 +0300
commit78c8a3e37d27383ef6d452ef4c6124d49cd99aa7 (patch)
treea7b7ad68730234d6415e853b08374f60084f98e2 /app/helpers/profiles_helper.rb
parent5b1b093403f8a3108a5de6572fd503cef763ae81 (diff)
Fix bug causing not all emails to show up in commit email selectbox
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/54045
Diffstat (limited to 'app/helpers/profiles_helper.rb')
-rw-r--r--app/helpers/profiles_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/profiles_helper.rb b/app/helpers/profiles_helper.rb
index 42f9a1213e9..df318de740a 100644
--- a/app/helpers/profiles_helper.rb
+++ b/app/helpers/profiles_helper.rb
@@ -7,7 +7,7 @@ module ProfilesHelper
[
[s_("Profiles|Use a private email - %{email}").html_safe % { email: private_email }, Gitlab::PrivateCommitEmail::TOKEN],
- verified_emails
+ *verified_emails
]
end