diff --git a/docs/en_US/release_notes_7_2.rst b/docs/en_US/release_notes_7_2.rst index 752d5c4f7..c8b3ac0a6 100644 --- a/docs/en_US/release_notes_7_2.rst +++ b/docs/en_US/release_notes_7_2.rst @@ -21,6 +21,7 @@ New features ************ | `Issue #3831 `_ - Add Option to only show active connections on Dashboard. + | `Issue #5048 `_ - Add an option to hide/show empty object collection nodes. | `Issue #5123 `_ - Added support to use standard OS secret store to save server/ssh tunnel passwords instead of master password in pgAdmin desktop mode. @@ -35,6 +36,7 @@ Bug fixes | `Issue #5926 `_ - Fixed an issue where REVOKE ALL DDL in table SQL was added only for one role. | `Issue #6003 `_ - Indicate the user if all the server's children nodes are hidden from the preferences setting. | `Issue #6026 `_ - Tools menu should be toggled for "pause replay of wal" and "resume replay of wal". + | `Issue #6043 `_ - Make the 'Connect to server' dialog a modal dialog. | `Issue #6080 `_ - pgAdmin icon not showing on taskbar on Windows 10. | `Issue #6127 `_ - Fixed an issue where properties were not visible for FTS Parsers, FTS Templates, MViews, and Rules in Catalog objects. | `Issue #6147 `_ - Heartbeat is getting logged, though no server is connected in pgAdmin. diff --git a/web/pgadmin/static/js/Dialogs/index.jsx b/web/pgadmin/static/js/Dialogs/index.jsx index f1934089b..5ccdc3976 100644 --- a/web/pgadmin/static/js/Dialogs/index.jsx +++ b/web/pgadmin/static/js/Dialogs/index.jsx @@ -71,12 +71,9 @@ export function showServerPassword() { onSuccess = arguments[7], onFailure = arguments[8]; - mountDialog(title, (onClose, setNewSize)=> { + Notify.showModal(title, (onClose) => { return { - setNewSize(pgAdmin.Browser.stdW.md, containerHeight); - }} closeModal={()=>{ onClose(); }}