Skip to content

Commit

Permalink
HMRC-142: Implement Filtering Options on Category Assessments Page - …
Browse files Browse the repository at this point in the history
…bug fix
  • Loading branch information
rasikasri committed Nov 11, 2024
1 parent c4feb26 commit 5414f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/green_lanes/category_assessments/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<%= form.label :regulation_role, "Regulation Role", class: "govuk-label" %>
<%= form.text_field :regulation_role, value: params[:regulation_role], class: "govuk-input", id: "search-term"%>
<%= form.label :theme_id, "Theme", class: "govuk-label" %>
<%= form.collection_select :theme_id, @themes, :id, :label, {prompt: "Select a Theme", selected: params[:theme_id]}, {class: "govuk-select govuk-!-width-one-third"}%>
<%= form.collection_select :theme_id, [OpenStruct.new(id: nil, label: "Select a Theme")] + @themes, :id, :label, {selected: params[:theme_id]}, {class: "govuk-select govuk-!-width-one-third"}%>
</div>

<div class="govuk-form-group">
Expand Down

0 comments on commit 5414f3f

Please sign in to comment.