mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-10 10:12:34 -05:00
Tenant selction bug (#23349)
This commit is contained in:
@@ -327,6 +327,8 @@ export class IntergrationRuntimePage extends MigrationWizardPage {
|
||||
} else {
|
||||
this.migrationStateModel._sqlMigrationServiceSubscription = undefined!;
|
||||
}
|
||||
|
||||
utils.clearDropDown(this._resourceGroupDropdown);
|
||||
await this.loadResourceGroupDropdown();
|
||||
}));
|
||||
|
||||
@@ -370,6 +372,7 @@ export class IntergrationRuntimePage extends MigrationWizardPage {
|
||||
else {
|
||||
this.migrationStateModel._sqlMigrationServiceResourceGroup = undefined!;
|
||||
}
|
||||
utils.clearDropDown(this._dmsDropdown);
|
||||
this.loadDmsDropdown();
|
||||
}));
|
||||
|
||||
@@ -523,7 +526,8 @@ export class IntergrationRuntimePage extends MigrationWizardPage {
|
||||
try {
|
||||
this._subscriptionDropdown.loading = true;
|
||||
this.migrationStateModel._subscriptions = await utils.getAzureSubscriptions(
|
||||
this.migrationStateModel._azureAccount);
|
||||
this.migrationStateModel._azureAccount,
|
||||
this.migrationStateModel._azureTenant?.id);
|
||||
|
||||
const sub = this.migrationStateModel._sqlMigrationServiceSubscription
|
||||
?? this.migrationStateModel._targetSubscription;
|
||||
|
||||
Reference in New Issue
Block a user