mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
It is difficult to distinguish group PMs from 1:1 PMs, so to improve the UI it is better to show different icon for group PMs. Here we are using fa fa-group icon for group PMs. Fixes #18069.
21 lines
751 B
Handlebars
21 lines
751 B
Handlebars
<li class='{{#if is_active}}active-sub-filter{{/if}} {{#if is_zero}}zero-pm-unreads{{/if}} top_left_row expanded_private_message' data-user-ids-string='{{user_ids_string}}'>
|
|
<span class='pm-box' id='pm_user_status' data-user-ids-string='{{user_ids_string}}' data-is-group='{{is_group}}'>
|
|
|
|
<div class="pm_left_col">
|
|
{{#if is_group}}
|
|
<span class="fa fa-group"></span>
|
|
{{else}}
|
|
<span class="{{user_circle_class}} user_circle"></span>
|
|
{{/if}}
|
|
</div>
|
|
|
|
<a href='{{url}}' class="conversation-partners">
|
|
{{recipients}}
|
|
</a>
|
|
<span class="unread_count {{#if is_zero}}zero_count{{/if}}">
|
|
{{unread}}
|
|
</span>
|
|
</span>
|
|
</li>
|
|
|