From: ThibG Date: Tue, 5 Feb 2019 14:11:35 +0000 (+0100) Subject: Hide misleading “You will be sent a confirmation e-mail” hint from admin view (#9973) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=1ac9a3f4bb8d1fb4bf521f9452ebc839d44315ba;p=mastodon.git Hide misleading “You will be sent a confirmation e-mail” hint from admin view (#9973) Thanks @wryk for noticing this issue. --- 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')