Fixed an issue where user management tab was not focussed when opened from a non default workspace. #8574

pull/8612/head
Aditya Toshniwal 2025-03-28 15:31:51 +05:30
parent 0eb8d6c8d6
commit 6b9f002366
1 changed files with 3 additions and 1 deletions

View File

@ -42,7 +42,9 @@ class UserManagement {
// This is a callback function to show user management tab.
launchUserManagement() {
pgAdmin.Browser.docker.default_workspace.openTab({
let handler = pgAdmin.Browser.getDockerHandler?.(BROWSER_PANELS.USER_MANAGEMENT);
handler.focus();
handler.docker.openTab({
id: BROWSER_PANELS.USER_MANAGEMENT,
title: gettext('User Management'),
content: <Component />,