Resource deployment clean up (#14418)

This commit is contained in:
Charles Gagnon
2021-02-24 12:11:06 -08:00
committed by GitHub
parent 9d827869a1
commit 587ac45418
11 changed files with 43 additions and 38 deletions

View File

@@ -65,9 +65,6 @@ export class DeployAzureSQLDBWizardModel extends ResourceTypeModel {
await this.scriptToNotebook();
}
onCancel(): void {
}
private getPages(): ResourceTypePage[] {
const pages: ResourceTypePage[] = [];
pages.push(new AzureSettingsPage(this));

View File

@@ -243,7 +243,7 @@ export class AzureSettingsPage extends BasePage {
private async populateAzureSubscriptionsDropdown() {
this._azureSubscriptionsDropdown.loading = true;
let subService = await apiService.azurecoreApi;
let subService = apiService.azurecoreApi;
let currentAccountDropdownValue = (this._azureAccountsDropdown.value as azdata.CategoryValue);
if (currentAccountDropdownValue === undefined) {
this._azureSubscriptionsDropdown.loading = false;