From c154febda09846cf3bed4fc5af1ae83ff6996783 Mon Sep 17 00:00:00 2001 From: Arthur Campbell Date: Fri, 9 Jun 2023 14:06:22 +0100 Subject: [PATCH] ensure delete logs button is always visible on log lists when in the organisations tab --- app/helpers/log_list_helper.rb | 4 ++++ app/views/logs/_log_list.html.erb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/app/helpers/log_list_helper.rb b/app/helpers/log_list_helper.rb index 881ebdfef..54ca4c668 100644 --- a/app/helpers/log_list_helper.rb +++ b/app/helpers/log_list_helper.rb @@ -6,4 +6,8 @@ module LogListHelper any_filter_selected? || search_term.present? end end + + def in_organisations_tab? + controller.class.name.start_with? "Organisation" + end end diff --git a/app/views/logs/_log_list.html.erb b/app/views/logs/_log_list.html.erb index d3a6482e8..73d0ccf9b 100644 --- a/app/views/logs/_log_list.html.erb +++ b/app/views/logs/_log_list.html.erb @@ -10,7 +10,7 @@ <% end %>
- <% if logs&.any? && display_delete_logs?(@current_user, @searched) %> + <% if logs&.any? && (display_delete_logs?(@current_user, @searched) || in_organisations_tab?) %> <%= govuk_link_to "Delete logs", delete_logs_path, class: "app-!-colour-red" %> <% end %>