Fix LineLength haml-lint in app/views/auth area (#28664)

This commit is contained in:
Matt Jankowski 2024-01-09 11:03:16 -05:00 committed by GitHub
parent 09ab073f0c
commit eed4eef39a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 130 additions and 28 deletions

View file

@ -21,7 +21,13 @@
= render 'shared/error_messages', object: resource
.fields-group
= f.input :email, autofocus: true, wrapper: :with_label, label: t('simple_form.labels.defaults.email'), input_html: { 'aria-label': t('simple_form.labels.defaults.email') }, readonly: current_user.present?, hint: current_user.present? && t('auth.confirmations.wrong_email_hint')
= f.input :email,
autofocus: true,
hint: current_user.present? && t('auth.confirmations.wrong_email_hint'),
input_html: { 'aria-label': t('simple_form.labels.defaults.email') },
label: t('simple_form.labels.defaults.email'),
readonly: current_user.present?,
wrapper: :with_label
.actions
= f.button :button, t('auth.resend_confirmation'), type: :submit