How can I get simple form to not wrap check_box in label tag
<%= simple_nested_form_for @project,
url: project_path(@project),
html: {
id: "project-form",
class: "form",
} do |f| %>
<%= f.association :tasks,
collection: Task.options_for_select,
as: :check_boxes,
required: false %>
<%= f.input :hold %>
<% end %>
current result
<label for="task_ids_8">
<input class="check_boxes optional" type="checkbox" value="8" name="task_ids" id="task_ids_8">Structure</label>
desired result
<label for="task_ids_8">Structure</label>
<input class="check_boxes optional" type="checkbox" value="8" name="task_ids" id="task_ids_8">
I need to know how to do this for the individual "hold" input and the collection.