mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
away: Use correct user circle in user group popup.
When you click on a user group mention, you see the list of people with green/orange/empty circles next to them. We now correctly reflect away status.
This commit is contained in:
@@ -331,7 +331,7 @@ function fetch_group_members(member_ids) {
|
||||
})
|
||||
.map(function (p) {
|
||||
return Object.assign({}, p, {
|
||||
presence_status: presence.get_status(p.user_id),
|
||||
presence_status: buddy_data.buddy_status(p.user_id),
|
||||
is_active: people.is_active_user_for_popover(p.user_id),
|
||||
user_last_seen_time_status: user_last_seen_time_status(p.user_id),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user