diff options
author | Takeshi Umeda <noel.yoshiba@gmail.com> | 2020-09-22 03:37:19 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-21 20:37:19 +0200 |
commit | 070026e6348f594c6521237cf0e6b90c8ee813ce (patch) | |
tree | 6b4eb5bb2f859e97fe66b997851e3a1418c8d800 /app/views/admin/accounts | |
parent | 8c8bf0289f6b166d7a0f6145347d5cd345977828 (diff) |
Fix method of the DELETE DATA button (#14855)
Diffstat (limited to 'app/views/admin/accounts')
-rw-r--r-- | app/views/admin/accounts/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/accounts/show.html.haml b/app/views/admin/accounts/show.html.haml index 2c48692b7..f0a216f6b 100644 --- a/app/views/admin/accounts/show.html.haml +++ b/app/views/admin/accounts/show.html.haml @@ -180,7 +180,7 @@ = link_to t('admin.accounts.undo_suspension'), unsuspend_admin_account_path(@account.id), method: :post, class: 'button' if can?(:unsuspend, @account) - if @deletion_request.present? - = link_to t('admin.accounts.delete'), admin_account_path(@account.id), method: :destroy, class: 'button button--destructive', data: { confirm: t('admin.accounts.are_you_sure') } if can?(:destroy, @account) + = link_to t('admin.accounts.delete'), admin_account_path(@account.id), method: :delete, class: 'button button--destructive', data: { confirm: t('admin.accounts.are_you_sure') } if can?(:destroy, @account) - else %div.action-buttons %div |