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:
m-e-l-u-h-a-n 2023-05-11 21:06:32 +05:30 committed by Tim Abbott
parent e42fa42b0c
commit 8a6d649ef9
1 changed files with 3 additions and 0 deletions

View File

@ -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();
}