From c59465f790a6d8268d688966a14e43c32b31b3cb Mon Sep 17 00:00:00 2001 From: Manny Dinssa <44172848+Dinssa@users.noreply.github.com> Date: Wed, 16 Apr 2025 17:51:29 +0100 Subject: [PATCH] Fix label text for profit status question in forms --- app/views/organisations/edit.html.erb | 2 +- app/views/organisations/new.html.erb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/organisations/edit.html.erb b/app/views/organisations/edit.html.erb index c6649a30a..15a660966 100644 --- a/app/views/organisations/edit.html.erb +++ b/app/views/organisations/edit.html.erb @@ -56,7 +56,7 @@ profit_status_options(@organisation.provider_type), :id, :name, - label: { text: "Is the organisation for-profit?", size: "m" }, + label: { text: "Is the organisation for profit?", size: "m" }, options: { disabled: [""], selected: @organisation.profit_status || "" } %> <% end %> diff --git a/app/views/organisations/new.html.erb b/app/views/organisations/new.html.erb index d5aa33164..9752155ac 100644 --- a/app/views/organisations/new.html.erb +++ b/app/views/organisations/new.html.erb @@ -80,7 +80,7 @@ profit_status_options, :id, :name, - label: { text: "Is the organisation for-profit?", size: "m" }, + label: { text: "Is the organisation for profit?", size: "m" }, options: { disabled: [""], selected: @organisation.profit_status || "" } %> <%= f.govuk_check_boxes_fieldset :rent_periods,