Browse Source

Add html_safe to bulk upload error summary table

pull/2576/head
Manny Dinssa 2 years ago
parent
commit
7a9303c509
  1. 2
      app/components/bulk_upload_error_summary_table_component.html.erb

2
app/components/bulk_upload_error_summary_table_component.html.erb

@ -12,7 +12,7 @@
<%= table.with_body do |body| %> <%= table.with_body do |body| %>
<% body.with_row do |row| %> <% body.with_row do |row| %>
<% row.with_cell(text: error[0][2]) %> <% row.with_cell(text: error[0][2].html_safe) %>
<% row.with_cell(text: pluralize(error[1], "error"), numeric: true) %> <% row.with_cell(text: pluralize(error[1], "error"), numeric: true) %>
<% end %> <% end %>
<% end %> <% end %>

Loading…
Cancel
Save