Fixed console warning shown while updating database node from browser tree.

This commit is contained in:
Nikhil Mohite 2022-10-06 16:15:38 +05:30 committed by GitHub
parent 7e51a2f517
commit 9002961e5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions
docs/en_US
web/pgadmin/browser/static/js

View File

@ -42,6 +42,7 @@ Bug fixes
| `Issue #5262 <https://github.com/pgadmin-org/pgadmin4/issues/5262>`_ - Ensure that the user management dialog should not allow the same email addresses with different letter casings when creating users.
| `Issue #5308 <https://github.com/pgadmin-org/pgadmin4/issues/5308>`_ - Ensure that the default value for a column should be used if it is made empty.
| `Issue #5327 <https://github.com/pgadmin-org/pgadmin4/issues/5327>`_ - Fixed an issue where user was unable to select privileges in Safari.
| `Issue #5332 <https://github.com/pgadmin-org/pgadmin4/issues/5332>`_ - Fixed console warning shown while updating database node from browser tree.
| `Issue #5338 <https://github.com/pgadmin-org/pgadmin4/issues/5338>`_ - Fixed an issue where the prompt is not visible when clicking on the 'save results to file' button on the large data.
| `Issue #5352 <https://github.com/pgadmin-org/pgadmin4/issues/5352>`_ - Fixed error occurring while LDAP authentication for a user with multiple email attributes.
| `Issue #5367 <https://github.com/pgadmin-org/pgadmin4/issues/5367>`_ - Ensure that the correct value should be returned if an exception occurs while decoding the password.

View File

@ -1372,10 +1372,8 @@ define('pgadmin.browser', [
this.t.openPath(this.i);
this.t.deselect(this.i);
// select tree item after few milliseconds
setTimeout(function() {
self.t.select(self.i);
}, 10);
// select tree item
self.t.select(self.i);
}
}
let success = this.o && this.o.success;