theseus/app/views/fields/array/_form.html.erb
2025-05-31 23:25:41 -04:00

7 lines
No EOL
288 B
Text

<div class="field-unit__label">
<%= f.label field.attribute %>
</div>
<div class="field-unit__field">
<%= f.text_field field.attribute, value: field.data&.join(", "), name: "#{f.object_name}[#{field.attribute}][]" %>
<p class="help-text">Enter values separated by commas</p>
</div>