10 lines
474 B
ERB
10 lines
474 B
ERB
<div class="flex flex-col gap-1">
|
|
<%= f.label field.attribute, class: "text-sm font-medium text-n-slate-11" %>
|
|
<%= f.select(
|
|
field.attribute,
|
|
options_for_select(field.selectable_options, field.data),
|
|
{ include_blank: field.include_blank_option },
|
|
{ class: "h-9 px-3 min-w-[120px] text-sm text-n-slate-12 bg-n-solid-2 border border-n-weak rounded-lg focus:ring-2 focus:ring-woot-500 focus:border-woot-500 outline-none" }
|
|
) %>
|
|
</div>
|