mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix issue where the Reset button does not get enabled till all the mandatory fields are provided in the dialog. Fixes #3538
This commit is contained in:
committed by
Akshay Joshi
parent
397a1b9616
commit
3ff4dfd02d
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user