mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
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.
6 lines
181 B
Handlebars
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>
|