Fixed an issue where pgAdmin failed to connect when the Postgres password included special characters. #5847

This commit is contained in:
Akshay Joshi
2023-02-13 16:49:18 +05:30
parent 026334a71a
commit 0fd1e0963e
3 changed files with 21 additions and 19 deletions

View File

@@ -99,7 +99,7 @@ export function showServerPassword() {
})
.catch((err)=>{
return onFailure(
err, nodeObj, nodeData, treeNodeInfo, itemNodeData, status
err, null, nodeObj, nodeData, treeNodeInfo, itemNodeData, status
);
});
}}