diff options
author | ThibG <thib@sitedethib.com> | 2019-02-05 15:11:35 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-02-05 15:11:35 +0100 |
commit | 1ac9a3f4bb8d1fb4bf521f9452ebc839d44315ba (patch) | |
tree | 13acda3ce2e42fb9ab41e7d777fabc7084b91de6 | |
parent | 5bffb53a763531f6ed1d8e87bacede3ff0938086 (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.haml | 2 |
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') |