about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-02-05 15:11:35 +0100
committerEugen Rochko <eugen@zeonfederated.com>2019-02-05 15:11:35 +0100
commit1ac9a3f4bb8d1fb4bf521f9452ebc839d44315ba (patch)
tree13acda3ce2e42fb9ab41e7d777fabc7084b91de6
parent5bffb53a763531f6ed1d8e87bacede3ff0938086 (diff)
Hide misleading “You will be sent a confirmation e-mail” hint from admin view (#9973)
Thanks @wryk for noticing this issue.
-rw-r--r--app/views/admin/change_emails/show.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/change_emails/show.html.haml b/app/views/admin/change_emails/show.html.haml
index 6febef9b1..6ff0d785e 100644
--- a/app/views/admin/change_emails/show.html.haml
+++ b/app/views/admin/change_emails/show.html.haml
@@ -3,7 +3,7 @@
 
 = simple_form_for @user, url: admin_account_change_email_path(@account.id) do |f|
   .fields-group
-    = f.input :email, wrapper: :with_label, disabled: true, label: t('admin.accounts.change_email.current_email')
+    = f.input :email, wrapper: :with_label, hint: false, disabled: true, label: t('admin.accounts.change_email.current_email')
 
   .fields-group
     = f.input :unconfirmed_email, wrapper: :with_label, label: t('admin.accounts.change_email.new_email')