diff --git a/docs/en_US/release_notes_4_16.rst b/docs/en_US/release_notes_4_16.rst index 427a7b81f..81028ac1b 100644 --- a/docs/en_US/release_notes_4_16.rst +++ b/docs/en_US/release_notes_4_16.rst @@ -17,6 +17,7 @@ Housekeeping Bug fixes ********* +| `Issue #3538 `_ - Fix issue where the Reset button does not get enabled till all the mandatory fields are provided in the dialog. | `Issue #4792 `_ - Ensure that the superuser should be able to create database, as the superuserĀ overrides all the access restrictions. | `Issue #4878 `_ - Ensure that the superuser should be able to create role, as the superuserĀ overrides all the access restrictions. | `Issue #4930 `_ - Fix main window tab navigation accessibility issue. diff --git a/web/pgadmin/browser/static/js/node.js b/web/pgadmin/browser/static/js/node.js index 0f95b1b2d..90e4fb611 100644 --- a/web/pgadmin/browser/static/js/node.js +++ b/web/pgadmin/browser/static/js/node.js @@ -346,7 +346,12 @@ define('pgadmin.browser.node', [ this.empty().css('visibility', 'hidden'); }.bind(that.statusBar)); } - callback(true); + + var sessHasChanged = false; + if(this.sessChanged && this.sessChanged()){ + sessHasChanged = true; + } + callback(true, sessHasChanged); return true; };