Fixing connection without saved password not connecting in Async Server Tree (#22535)

This commit is contained in:
Aasim Khan
2023-03-31 09:19:01 -07:00
committed by GitHub
parent a1acaf2096
commit d49ff85afc
4 changed files with 12 additions and 2 deletions

View File

@@ -270,6 +270,9 @@ export class ConnectionDialogService implements IConnectionDialogService {
showFirewallRuleOnError: true
};
if (params && options.params === undefined) {
options.params = params;
}
try {
const connectionResult = await this._connectionManagementService.connectAndSaveProfile(connection, uri, options, params && params.input);
this._connecting = false;