Don't need to navigate this list

I doubt most collections will ever have more than a handul
This commit is contained in:
Jason Zimdars
2025-09-16 12:28:14 -05:00
committed by Stanko K.R.
parent daee271940
commit 784d6cf690
2 changed files with 3 additions and 14 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
<li class="list-style-none margin-none flex align-center gap full-width" data-navigable-list-target="item">
<li class="list-style-none margin-none flex align-center gap full-width">
<%= link_to webhook, class: "txt-ink flex gap-half align-center min-width txt-medium" do %>
<strong class="overflow-ellipsis"><%= webhook.name %></strong>
<% end %>
+2 -13
View File
@@ -21,14 +21,9 @@
</div>
<% end %>
<%= tag.section class: "panel shadow center webhooks", data: {
controller: "navigable-list",
action: "keydown->navigable-list#navigate",
navigable_list_focus_on_selection_value: true,
navigable_list_actionable_items_value: true
} do %>
<%= tag.section class: "panel shadow center webhooks" do %>
<% if @page.records.any? %>
<ul class="flex flex-column align-start gap margin-none unpad" data-filter-target="list">
<ul class="flex flex-column align-start gap margin-none unpad webhooks-list">
<%= render partial: "webhooks/webhook", collection: @page.records %>
</ul>
<% else %>
@@ -39,10 +34,4 @@
<span>Set up a webhook</span>
<% end %>
<% end %>
<% if @page.records.many? %>
<footer class="popup__footer">
Press <kbd class="kbd">↑</kbd><kbd class="kbd">↓</kbd> to move, <kbd class="kbd">enter</kbd> to visit webhook, <kbd class="kbd">SHIFT+ENTER</kbd> to toggle.
</footer>
<% end %>
<% end %>