From 62a61b403e5d817c2cad2428aff2ac562dbe9686 Mon Sep 17 00:00:00 2001 From: Pravesh Sharma Date: Fri, 28 Jun 2024 14:44:39 +0530 Subject: [PATCH] Fixed an issue where users could not autofill their saved passwords in the connect server dialog in the browser. #7627 --- web/pgadmin/static/js/Dialogs/ConnectServerContent.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pgadmin/static/js/Dialogs/ConnectServerContent.jsx b/web/pgadmin/static/js/Dialogs/ConnectServerContent.jsx index 37de80c04..4d12a7c6f 100644 --- a/web/pgadmin/static/js/Dialogs/ConnectServerContent.jsx +++ b/web/pgadmin/static/js/Dialogs/ConnectServerContent.jsx @@ -93,7 +93,7 @@ export default function ConnectServerContent({closeModal, data, onOK, setHeight} /* Set only if no tunnel password asked */ firstEleRef.current = ele; } - }} type="password" value={formData['password']} controlProps={{maxLength:null, autoComplete:'new-password'}} + }} type="password" value={formData['password']} controlProps={{maxLength:null}} onChange={(e)=>onTextChange(e, 'password')} onKeyDown={(e)=>onKeyDown(e)}/>