The following rails 7.0.8 helper tag
<%= form_with model: @wheel, data: {turbo: false} do |form| %>
...
<%= form.text_field :retire_date_tz_ui %>
is rendering an HTML tag with the correct name attribute, yet devoid of an id
attribute
<input type="text" name="wheel[retire_date_tz_ui]">
The documentation relative to this helper does not provide any indication as to what conditions would break the convention.
Is there an explanation for this?