From 7a9303c509d814f47bff762fc2f9e871d7618274 Mon Sep 17 00:00:00 2001 From: Manny Dinssa <44172848+Dinssa@users.noreply.github.com> Date: Wed, 14 Aug 2024 14:55:58 +0100 Subject: [PATCH] Add html_safe to bulk upload error summary table --- .../bulk_upload_error_summary_table_component.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/bulk_upload_error_summary_table_component.html.erb b/app/components/bulk_upload_error_summary_table_component.html.erb index c0e10cffa..f9b42f34d 100644 --- a/app/components/bulk_upload_error_summary_table_component.html.erb +++ b/app/components/bulk_upload_error_summary_table_component.html.erb @@ -12,7 +12,7 @@ <%= table.with_body do |body| %> <% 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) %> <% end %> <% end %>