mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 21:13:36 +00:00
invite: Fix invite modal bug for users who can't subscribe others.
The bug was due to the element being accessed when not present
in the DOM. This function fixes it by calling the function to
setup streams UI only when the concerned elements are present
in DOM, i.e. when user can subscribe others.
The bug was introduced in 016917679e.
This commit is contained in:
@@ -364,7 +364,10 @@ function open_invite_user_modal(e: JQuery.ClickEvent<Document, undefined>): void
|
||||
|
||||
set_custom_time_inputs_visibility();
|
||||
set_expires_on_text();
|
||||
set_streams_to_join_list_visibility();
|
||||
|
||||
if (settings_data.user_can_subscribe_other_users()) {
|
||||
set_streams_to_join_list_visibility();
|
||||
}
|
||||
|
||||
$("#invite-user-modal").on("click", ".setup-tips-container .banner_content a", () => {
|
||||
dialog_widget.close();
|
||||
|
||||
Reference in New Issue
Block a user