Dev/brih/hotfix status page (#16407)

* add dispose pattern, fix migration status enum

* format strings

* add dispose handler to more events
This commit is contained in:
brian-harris
2021-07-22 22:20:10 -07:00
committed by GitHub
parent 107023c7d0
commit df5ed2c889
22 changed files with 351 additions and 249 deletions

View File

@@ -179,7 +179,7 @@ export class SubscriptionSelectionPage extends MigrationWizardPage {
}
public async onPageLeave(): Promise<void> {
this.disposables.forEach(d => d.dispose());
this.disposables.forEach(d => { try { d.dispose(); } catch { } });
}
protected async handleStateChange(e: StateChangeEvent): Promise<void> {