about summary refs log tree commit diff
path: root/app/views
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-03-14 05:27:37 +0100
committerGitHub <noreply@github.com>2022-03-14 05:27:37 +0100
commit5db1f377ea2735778d2d3004d2af268fdcafff4a (patch)
tree3d96a607a1d19c6d8406872670a434fcb99ac3f8 /app/views
parent74f406cfc97a8e9fcdfd6f040d2e6e6360b782f8 (diff)
Fix nil error when viewing suspended domain in admin UI (#17765)
Diffstat (limited to 'app/views')
-rw-r--r--app/views/admin/instances/show.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/instances/show.html.haml b/app/views/admin/instances/show.html.haml
index bed94f3fe..70912a4f5 100644
--- a/app/views/admin/instances/show.html.haml
+++ b/app/views/admin/instances/show.html.haml
@@ -89,7 +89,7 @@
         = t('admin.instances.availability.failures_recorded', count: @instance.delivery_failure_tracker.days)
         = link_to t('admin.instances.delivery.clear'), clear_delivery_errors_admin_instance_path(@instance), data: { confirm: t('admin.accounts.are_you_sure'), method: :post } unless @instance.exhausted_deliveries_days.empty?
 
-- if @instance.unavailable?
+- if @instance.purgeable?
   %p= t('admin.instances.purge_description_html')
 
   = link_to t('admin.instances.purge'), admin_instance_path(@instance), data: { confirm: t('admin.instances.confirm_purge'), method: :delete }, class: 'button button--destructive'