Files
openproject/lib/primer/open_project/forms/select_panel.html.erb
T
Alexander Brandon Coles dfbf5f0f6c Implement select panel form control/input
Makes `SelectPanel` easily usable via the Forms DSL. Based on upstream
`ActionMenuInput` implementation.
2026-01-09 15:48:32 -03:00

7 lines
269 B
Plaintext

<%= render(FormControl.new(input: @input)) do %>
<%= render(Primer::Alpha::SelectPanel.new(**@input.input_arguments)) do |menu| %>
<% menu.with_show_button("aria-describedby": @label_id) { "Select..." } %>
<% @input.block&.call(menu) %>
<% end %>
<% end %>