mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed sizing issue of help dialog for Query Tool and ERD Tool when open in the new browser tab. Fixes #6333
This commit is contained in:
committed by
Akshay Joshi
parent
c1ba645dce
commit
585ba81492
@@ -907,7 +907,12 @@ define('pgadmin.browser', [
|
||||
|
||||
window.open(fullUrl, 'postgres_help');
|
||||
} else if(type == 'dialog_help') {
|
||||
window.open(url, 'pgadmin_help');
|
||||
if (pgWindow && pgWindow.default) {
|
||||
pgWindow.default.open(url, 'pgadmin_help');
|
||||
}
|
||||
else {
|
||||
window.open(url, 'pgadmin_help');
|
||||
}
|
||||
}
|
||||
$('#live-search-field').focus();
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user