mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-30 01:25:38 -05:00
Parameter renaming and number of calls reduce (#23760)
Co-authored-by: Alexander Perfilyev <aperfilyev@microsoft.com>
This commit is contained in:
committed by
GitHub
parent
8bdc7d0346
commit
8b4b84e5c0
@@ -417,9 +417,10 @@ export class SKURecommendationPage extends MigrationWizardPage {
|
||||
|
||||
this._serverName = this.migrationStateModel.serverName || (await getSourceConnectionProfile()).serverName;
|
||||
|
||||
const miDialog = new AssessmentResultsDialog('ownerUri', this.migrationStateModel, constants.ASSESSMENT_TILE(this._serverName), this, MigrationTargetType.SQLMI);
|
||||
const vmDialog = new AssessmentResultsDialog('ownerUri', this.migrationStateModel, constants.ASSESSMENT_TILE(this._serverName), this, MigrationTargetType.SQLVM);
|
||||
const dbDialog = new AssessmentResultsDialog('ownerUri', this.migrationStateModel, constants.ASSESSMENT_TILE(this._serverName), this, MigrationTargetType.SQLDB);
|
||||
const assessmentTitle = constants.ASSESSMENT_TITLE(this._serverName);
|
||||
const miDialog = new AssessmentResultsDialog('ownerUri', this.migrationStateModel, assessmentTitle, this, MigrationTargetType.SQLMI);
|
||||
const vmDialog = new AssessmentResultsDialog('ownerUri', this.migrationStateModel, assessmentTitle, this, MigrationTargetType.SQLVM);
|
||||
const dbDialog = new AssessmentResultsDialog('ownerUri', this.migrationStateModel, assessmentTitle, this, MigrationTargetType.SQLDB);
|
||||
|
||||
this._disposables.push(button.onDidClick(async (e) => {
|
||||
switch (this._rbg.selectedCardId) {
|
||||
|
||||
Reference in New Issue
Block a user