From ee43746162452bf27e96e3b2ef662993b2502afb Mon Sep 17 00:00:00 2001 From: Pablo Brasero Date: Thu, 18 Dec 2025 12:47:08 +0000 Subject: [PATCH] Colour 'suspend' action as dangerous --- app/views/users/show.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb index f644f7b5e..ebc00e97d 100644 --- a/app/views/users/show.html.erb +++ b/app/views/users/show.html.erb @@ -194,7 +194,7 @@ <% if @user.may_suspend? %>
  • - <%= link_to t(".suspend_user"), user_status_path(@user, :event => "suspend"), :method => :put, :data => { :confirm => t(".confirm") } %> + <%= link_to t(".suspend_user"), user_status_path(@user, :event => "suspend"), :method => :put, :data => { :confirm => t(".confirm") }, :class => "link-danger" %>
  • <% end %> -- 2.39.5