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
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

@ -5,7 +5,11 @@
= f.input :return_to, as: :hidden
.field-group
= f.input :current_password, wrapper: :with_block_label, input_html: { autocomplete: 'current-password', autofocus: true }, label: t('challenge.prompt'), required: true
= f.input :current_password,
input_html: { autocomplete: 'current-password', autofocus: true },
label: t('challenge.prompt'),
required: true,
wrapper: :with_block_label
.actions
= f.button :button, t('challenge.confirm'), type: :submit