Files
zulip/web/templates/message_group.hbs
Anders Kaseorg a9d0054efa templates: Remove redundant {{#with this}} blocks.
By definition, `this` is already the current context.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2024-11-19 10:53:36 -08:00

15 lines
503 B
Handlebars

{{! Client-side Handlebars template for rendering messages. }}
{{#each message_groups}}
{{#if bookend_top}}
{{> bookend .}}
{{/if}}
<div class="recipient_row" id="{{message_group_id}}">
{{> recipient_row . use_match_properties=../use_match_properties}}
{{#each message_containers}}
{{> single_message . use_match_properties=../../use_match_properties message_list_id=../../message_list_id is_archived=../is_archived}}
{{/each}}
</div>
{{/each}}