Browse Source

Add blank default

pull/2971/head
Manny Dinssa 2 months ago
parent
commit
2c14c0dd8c
  1. 2
      app/views/organisations/new.html.erb

2
app/views/organisations/new.html.erb

@ -56,7 +56,7 @@
:name, :name,
legend: { text: "Does the organisation hold its own stock?", size: "m" } %> legend: { text: "Does the organisation hold its own stock?", size: "m" } %>
<% group_organisation_options = Organisation.visible.map { |org| OpenStruct.new(id: org.id, name: org.name) } %> <% group_organisation_options = [OpenStruct.new(id: "", name: "")] + Organisation.visible.map { |org| OpenStruct.new(id: org.id, name: org.name) } %>
<%= f.govuk_radio_buttons_fieldset :group_member, <%= f.govuk_radio_buttons_fieldset :group_member,
legend: { text: "Is this organisation part of a housing provider group structure?", size: "m" } do %> legend: { text: "Is this organisation part of a housing provider group structure?", size: "m" } do %>

Loading…
Cancel
Save