mirror of https://github.com/zulip/zulip.git
user groups: Fix right panel display for new user group on small screen.
Opening create user group from `+` button on left panel did not open the create user group form properly on small viewports. This was due to show_right_section not being called which is resposible to handle this.
This commit is contained in:
parent
e42fa42b0c
commit
8a6d649ef9
|
@ -71,6 +71,9 @@ export const show_user_group_settings_pane = {
|
|||
};
|
||||
|
||||
export function do_open_create_user_group() {
|
||||
// Only call this directly for hash changes.
|
||||
// Prefer open_create_user_group().
|
||||
show_right_section();
|
||||
user_group_create.create_user_group_clicked();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue