19 lines
566 B
ERB
19 lines
566 B
ERB
<% @statuses.each do |status| %>
|
|
<%= render StatusTextComponent.new(
|
|
text: status[:text],
|
|
icon_name: status[:icon_name],
|
|
icon_color: status[:icon_color]
|
|
) %>
|
|
<% end %>
|
|
|
|
<div class="mt-8" data-controller="modal" data-action="keydown.esc->modal#close">
|
|
<button data-action="click->modal#open" class="btn-md btn-blue w-full sm:w-auto">
|
|
<%= @button_text %>
|
|
</button>
|
|
<%= render ModalComponent.new(show_close_button: false) do %>
|
|
<%= render Settings::NostrEditRelaysComponent.new(
|
|
nip65_event: @nip65_event
|
|
) %>
|
|
<% end %>
|
|
</div>
|