bc5e32e737
The other notifications are only sent to the watchers of the bubble.
14 lines
565 B
Plaintext
14 lines
565 B
Plaintext
<%= messages_tag(bubble) do %>
|
|
<%# Template Dependency: comments/comment %>
|
|
<%# Template Dependency: event_summaries/event_summary %>
|
|
<%= render bubble.messages, cached: true %>
|
|
<%= render "comments/new", bubble: bubble %>
|
|
|
|
<div class="flex flex-column gap-half justify-start full-width txt-align-start">
|
|
<span>Watching this…</span>
|
|
<div class="flex align-center flex-wrap gap-half max-width">
|
|
<%= render partial: "bubbles/watches/watcher", collection: bubble.watchers.sorted_with_user_first(Current.user) %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|