mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-02 09:35:40 -05:00
Save And Close Functionality (#17000)
* save and close * wip * working save and close * cleanup * pr changes * pr changes * fix capitalization * fix build * pr fix
This commit is contained in:
@@ -97,6 +97,15 @@ export class MigrationModePage extends MigrationWizardPage {
|
||||
}
|
||||
}).component();
|
||||
|
||||
if (this.migrationStateModel.resumeAssessment && this.migrationStateModel.savedInfo.closedPage >= 3) {
|
||||
if (this.migrationStateModel.savedInfo.migrationMode === MigrationMode.ONLINE) {
|
||||
onlineButton.checked = true;
|
||||
offlineButton.checked = false;
|
||||
} else {
|
||||
onlineButton.checked = false;
|
||||
offlineButton.checked = true;
|
||||
}
|
||||
}
|
||||
|
||||
this._disposables.push(offlineButton.onDidChangeCheckedState((e) => {
|
||||
if (e) {
|
||||
|
||||
Reference in New Issue
Block a user