UNC-Libraries/hy-c

View on GitHub
app/views/records/edit_fields/_table_of_contents.html.erb

Summary

Maintainability
Test Coverage
<% if f.object.multiple? key %>
  <%= f.input :table_of_contents, as: :multi_value, input_html: { rows: '14', type: 'textarea'}, required: f.object.required?(key) %>
<% else %>
  <%= f.input :table_of_contents, as: :text, input_html: { rows: '14' }, required: f.object.required?(key) %>
<% end %>