Browse Source

ensure delete logs button is always visible on log lists when in the organisations tab

pull/1657/head
Arthur Campbell 3 years ago
parent
commit
c154febda0
  1. 4
      app/helpers/log_list_helper.rb
  2. 2
      app/views/logs/_log_list.html.erb

4
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

2
app/views/logs/_log_list.html.erb

@ -10,7 +10,7 @@
<% end %>
</div>
<div class="govuk-grid-column-one-quarter govuk-!-text-align-right">
<% 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 %>
</div>

Loading…
Cancel
Save