fix the connection issue when opening new query after connection (#2561)

This commit is contained in:
Alan Ren
2018-09-13 08:05:46 -07:00
committed by Karl Burtram
parent c92b88bfaf
commit 950a440350

View File

@@ -123,6 +123,7 @@ export class ConnectionStore {
.then(savedCred => {
if (savedCred) {
credentialsItem.password = savedCred.password;
credentialsItem.options['password'] = savedCred.password;
}
resolve({ profile: credentialsItem, savedCred: !!savedCred });
},