Files
fizzy/app/views/notifications/settings/_collection.html.erb
T
Jason Zimdars 34e5b14b58 Move the watchers list into the turbo frame
Passes around a param to opt-out of rendering the watchers on the
notification settings screen
2025-09-11 18:05:34 -05:00

14 lines
509 B
Plaintext

<%= turbo_frame_tag dom_id(collection, :involvement) do %>
<div class="flex align-center gap pad-inline">
<h2 class="txt-medium overflow-ellipsis">
<%= collection.name %>
</h2>
<hr class="separator--horizontal flex-item-grow" style="--border-color: var(--color-ink-medium); --border-style: dashed" aria-hidden="true">
<label class="flex-item-no-shrink txt-small">
<%= access_involvement_advance_button(collection, user, show_watchers: false) %>
</label>
</div>
<% end %>