From e3a852a096cfcbe812748be1e17a614bb8aecd25 Mon Sep 17 00:00:00 2001 From: Manny Dinssa <44172848+Dinssa@users.noreply.github.com> Date: Mon, 5 Aug 2024 11:34:03 +0100 Subject: [PATCH] Fix lint offence --- app/components/bulk_upload_error_row_component.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/bulk_upload_error_row_component.html.erb b/app/components/bulk_upload_error_row_component.html.erb index d35ddc345..0948d0e4b 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)) %> - <% row.with_cell(text: error.error, html_attributes: {class: "govuk-!-font-weight-bold"}) %> + <% row.with_cell(text: error.error, html_attributes: { class: "govuk-!-font-weight-bold" }) %> <% 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)) %> <% if index == 0 %> - <% row.with_cell(text: error_message, rowspan: errors.size, html_attributes: {class: "govuk-!-font-weight-bold"}) %> + <% row.with_cell(text: error_message, rowspan: errors.size, html_attributes: { class: "govuk-!-font-weight-bold" }) %> <% end %> <% row.with_cell(text: error.field.humanize) %> <% end %>