fix(ssh): fix username and password display for ssh creds

This commit is contained in:
Marshall Hallenbeck
2023-04-27 14:20:19 -04:00
parent 5d56614ef2
commit e6100d4675
+2 -2
View File
@@ -173,8 +173,8 @@ class navigator(DatabaseNavigator):
for cred in creds:
cred_id = cred[0]
cred_id_list.append(cred_id)
password = cred[1]
username = cred[2]
username = cred[1]
password = cred[2]
credtype = cred[3]
cred_data.append([cred_id, username, password, credtype])