Fix haml-lint InstanceVariables rule for admin/webhooks/_form (#26062)

This commit is contained in:
Matt Jankowski 2023-09-28 10:23:35 -04:00 committed by GitHub
commit 9d56c1949b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 18 deletions

View file

@ -1,4 +1,7 @@
- content_for :page_title do
= t('admin.webhooks.edit')
= render partial: 'form'
= simple_form_for @webhook, url: admin_webhook_path(@webhook) do |form|
= render partial: 'form', object: form
.actions
= form.button :button, t('generic.save_changes'), type: :submit