Files
zulip/web/templates/buddy_list/view_all_users.hbs
Shubham Padia 90a1f0f7aa buddy_list: Set html instead of append for view all users link.
Fixes https://chat.zulip.org/#narrow/channel/9-issues/topic/buddy.20list.20view.20all.20users.20appears.20twice
Earlier, we were appending view all users link using JQuery.append, so
when `render_view_user_list_links` is called twice, `view all users`
appears twice. It is better to have the link div in right_sidebar.hbs
and then insert the html when required.
2025-06-05 16:13:05 -07:00

6 lines
181 B
Handlebars

<a class="right-sidebar-wrappable-text-container" href="#organization/users">
<span class="right-sidebar-wrappable-text-inner">
{{t "View all users" }}
</span>
</a>