mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-12 09:01:57 -06:00
Fixed console warning shown while updating database node from browser tree. #5332
This commit is contained in:
parent
7e51a2f517
commit
9002961e5d
@ -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.
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user