diff --git a/web/pgadmin/about/static/js/AboutComponent.jsx b/web/pgadmin/about/static/js/AboutComponent.jsx
index 5a4aba8e0..457c54412 100644
--- a/web/pgadmin/about/static/js/AboutComponent.jsx
+++ b/web/pgadmin/about/static/js/AboutComponent.jsx
@@ -141,7 +141,7 @@ export default function AboutComponent() {
}}>{copyText}
-
diff --git a/web/pgadmin/browser/server_groups/servers/static/js/server.ui.js b/web/pgadmin/browser/server_groups/servers/static/js/server.ui.js
index 3f640d457..34e3e57ff 100644
--- a/web/pgadmin/browser/server_groups/servers/static/js/server.ui.js
+++ b/web/pgadmin/browser/server_groups/servers/static/js/server.ui.js
@@ -224,7 +224,8 @@ export default class ServerSchema extends BaseUISchema {
return state.connect_now && obj.isNew(state);
},
controlProps: {
- maxLength: null
+ maxLength: null,
+ autoComplete: 'new-password'
},
disabled: function(state) {return state.kerberos_conn;},
},{
diff --git a/web/pgadmin/static/js/Dialogs/ChangePasswordContent.jsx b/web/pgadmin/static/js/Dialogs/ChangePasswordContent.jsx
index f5441611e..f56e527b5 100644
--- a/web/pgadmin/static/js/Dialogs/ChangePasswordContent.jsx
+++ b/web/pgadmin/static/js/Dialogs/ChangePasswordContent.jsx
@@ -36,7 +36,8 @@ class ChangePasswordSchema extends BaseUISchema {
id: 'password', label: gettext('Current Password'), type: 'password',
disabled: self.isPgpassFileUsed, noEmpty: !self.isPgpassFileUsed,
controlProps: {
- maxLength: null
+ maxLength: null,
+ autoComplete: 'new-password'
}
}, {
id: 'newPassword', label: gettext('New Password'), type: 'password',
diff --git a/web/pgadmin/static/js/Dialogs/MasterPasswordContent.jsx b/web/pgadmin/static/js/Dialogs/MasterPasswordContent.jsx
index 73d97934a..d2e62f759 100644
--- a/web/pgadmin/static/js/Dialogs/MasterPasswordContent.jsx
+++ b/web/pgadmin/static/js/Dialogs/MasterPasswordContent.jsx
@@ -91,7 +91,7 @@ export default function MasterPasswordContent({ closeModal, onResetPassowrd, onO
onTextChange(e, 'password')} onKeyDown={(e) => onKeyDown(e)}/>
+ onChange={(e) => onTextChange(e, 'password')} onKeyDown={(e) => onKeyDown(e)} controlProps={{autoComplete: 'new-password'}}/>