Fix error on attempting to delete an account moderation note (#18196)

Fixes #18193
local
Claire 2 years ago committed by GitHub
parent 74e20f22cd
commit 5c691430e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      app/views/admin/report_notes/_report_note.html.haml

@ -15,4 +15,7 @@
- if can?(:destroy, report_note)
.report-notes__item__actions
= table_link_to 'trash', t('admin.reports.notes.delete'), admin_report_note_path(report_note), method: :delete
- if report_note.is_a?(AccountModerationNote)
= table_link_to 'trash', t('admin.reports.notes.delete'), admin_account_moderation_note_path(report_note), method: :delete
- else
= table_link_to 'trash', t('admin.reports.notes.delete'), admin_report_note_path(report_note), method: :delete

Loading…
Cancel
Save