From c2a41e910aae1bcab79fbb90131902512debc666 Mon Sep 17 00:00:00 2001 From: Manny Dinssa <44172848+Dinssa@users.noreply.github.com> Date: Wed, 14 Aug 2024 15:25:09 +0100 Subject: [PATCH] Add html_safe to error message fields --- app/components/bulk_upload_error_row_component.html.erb | 4 ++-- .../bulk_upload_error_summary_table_component.html.erb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/bulk_upload_error_row_component.html.erb b/app/components/bulk_upload_error_row_component.html.erb index 6bfe4eb0c..9447c9d37 100644 --- a/app/components/bulk_upload_error_row_component.html.erb +++ b/app/components/bulk_upload_error_row_component.html.erb @@ -25,7 +25,7 @@ <% body.with_row do |row| %> <% row.with_cell(text: error.cell) %> <% row.with_cell(text: question_for_field(error.field), html_attributes: { class: "govuk-!-width-one-half" }) %> - <% row.with_cell(text: error.error, html_attributes: { class: "govuk-!-font-weight-bold govuk-!-width-one-half" }) %> + <% row.with_cell(text: error.error.html_safe, html_attributes: { class: "govuk-!-font-weight-bold govuk-!-width-one-half" }) %> <% row.with_cell(text: error.field.humanize) %> <% end %> <% end %> @@ -56,7 +56,7 @@ <% row.with_cell(text: error.cell) %> <% row.with_cell(text: question_for_field(error.field), html_attributes: { class: "govuk-!-width-one-half" }) %> <% if index == 0 %> - <% row.with_cell(text: error_message, rowspan: errors.size, html_attributes: { class: "govuk-!-font-weight-bold govuk-!-width-one-half grouped-multirow-cell" }) %> + <% row.with_cell(text: error_message.html_safe, rowspan: errors.size, html_attributes: { class: "govuk-!-font-weight-bold govuk-!-width-one-half grouped-multirow-cell" }) %> <% end %> <% row.with_cell(text: error.field.humanize) %> <% end %> 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 %>