Browse Source

Hide bulk upload button for support users in log pages

pull/2629/head
Manny Dinssa 2 years ago
parent
commit
dcb5525eb2
  1. 2
      app/components/create_log_actions_component.html.erb

2
app/components/create_log_actions_component.html.erb

@ -3,7 +3,7 @@
<% if create_button_href.present? %>
<%= govuk_button_to create_button_copy, create_button_href, class: "govuk-!-margin-right-6" %>
<% end %>
<% if upload_button_href.present? %>
<% if upload_button_href.present? && !user.support? %>
<%= govuk_button_link_to upload_button_copy, upload_button_href, secondary: true %>
<% end %>
</div>

Loading…
Cancel
Save