Handle default tenant to be set when only 1 tenant exists (#21532)

This commit is contained in:
Cheena Malhotra
2023-01-05 16:40:16 -08:00
committed by GitHub
parent e904439060
commit ec7e754009
2 changed files with 9 additions and 0 deletions

View File

@@ -689,6 +689,7 @@ export class ConnectionWidget extends lifecycle.Disposable {
}
}
else {
this._azureTenantId = selectedAccount.properties.tenants[0].id;
this.onAzureTenantSelected(0);
}
@@ -860,6 +861,13 @@ export class ConnectionWidget extends lifecycle.Disposable {
}
this.onAzureTenantSelected(this._azureTenantDropdown.values.indexOf(this._azureTenantDropdown.value));
}
else if (account && account.properties.tenants && account.properties.tenants.length === 1) {
this._azureTenantId = account.properties.tenants[0].id;
this.onAzureTenantSelected(0);
}
else {
this._logService.error(`fillInConnectionInputs : Could not find any tenants for account ${accountName}`);
}
}).catch(err => this._logService.error(`Unexpected error populating initial Azure Account options : ${err}`));
}