mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-09 23:15:58 -06:00
Fixed an issue where Clear Saved Password should be disabled if the password is already cleared. #5773
This commit is contained in:
parent
e70f115b48
commit
5303a36ff4
@ -427,6 +427,10 @@ define('pgadmin.node.server', [
|
||||
if (res.success == 1) {
|
||||
Notify.success(res.info);
|
||||
t.itemData(i).is_password_saved=res.data.is_password_saved;
|
||||
t.deselect(i);
|
||||
setTimeout(function() {
|
||||
t.select(i);
|
||||
});
|
||||
}
|
||||
else {
|
||||
Notify.error(res.info);
|
||||
|
Loading…
Reference in New Issue
Block a user