mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
dfbf5f0f6c
Makes `SelectPanel` easily usable via the Forms DSL. Based on upstream `ActionMenuInput` implementation.
7 lines
269 B
Plaintext
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 %>
|