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:
authorAlexis Reigel <mail@koffeinfrei.org>2017-07-04 14:46:33 +0300
committerAlexis Reigel <mail@koffeinfrei.org>2017-07-27 16:43:37 +0300
commita06494bf71b589d2b9f5c80710b6c8e0749fc210 (patch)
treed47993509a6a0183812868411adaa1b56a74807e /app/views/profiles/gpg_keys
parentade54803a7f8b1470320fc6fa5871f2ec208eb0f (diff)
no need for html_safe
Diffstat (limited to 'app/views/profiles/gpg_keys')
-rw-r--r--app/views/profiles/gpg_keys/_key.html.haml4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/profiles/gpg_keys/_key.html.haml b/app/views/profiles/gpg_keys/_key.html.haml
index d7450a22f4c..b4b9aa07190 100644
--- a/app/views/profiles/gpg_keys/_key.html.haml
+++ b/app/views/profiles/gpg_keys/_key.html.haml
@@ -2,7 +2,9 @@
.pull-left.append-right-10
= icon 'key', class: "settings-list-icon hidden-xs"
.key-list-item-info
- = key.emails_with_verified_status.map { |email, verified| verified_email_badge(email, verified) }.join(' ').html_safe
+ - key.emails_with_verified_status.map do |email, verified|
+ = verified_email_badge(email, verified)
+
.description
= key.fingerprint
.pull-right