mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-12 11:08:31 -05:00
add error banner for failed migration cutover and cancel migration (#17106)
This commit is contained in:
@@ -88,11 +88,11 @@ export class AccountsSelectionPage extends MigrationWizardPage {
|
||||
this.migrationStateModel._accountTenants = selectedAzureAccount.properties.tenants;
|
||||
this._accountTenantDropdown.values = await this.migrationStateModel.getTenantValues();
|
||||
selectDropDownIndex(this._accountTenantDropdown, 0);
|
||||
this._accountTenantFlexContainer.updateCssStyles({
|
||||
await this._accountTenantFlexContainer.updateCssStyles({
|
||||
'display': 'inline'
|
||||
});
|
||||
} else {
|
||||
this._accountTenantFlexContainer.updateCssStyles({
|
||||
await this._accountTenantFlexContainer.updateCssStyles({
|
||||
'display': 'none'
|
||||
});
|
||||
}
|
||||
@@ -119,7 +119,7 @@ export class AccountsSelectionPage extends MigrationWizardPage {
|
||||
this.wizard.message = {
|
||||
text: ''
|
||||
};
|
||||
this._azureAccountsDropdown.validate();
|
||||
await this._azureAccountsDropdown.validate();
|
||||
}));
|
||||
|
||||
const flexContainer = view.modelBuilder.flexContainer()
|
||||
|
||||
Reference in New Issue
Block a user