diff --git a/extensions/sql-migration/package.json b/extensions/sql-migration/package.json index c8f69327fe..4d9bdd80f4 100644 --- a/extensions/sql-migration/package.json +++ b/extensions/sql-migration/package.json @@ -2,7 +2,7 @@ "name": "sql-migration", "displayName": "%displayName%", "description": "%description%", - "version": "1.2.1", + "version": "1.2.2", "publisher": "Microsoft", "preview": false, "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", diff --git a/extensions/sql-migration/src/dashboard/dashboardTab.ts b/extensions/sql-migration/src/dashboard/dashboardTab.ts index 0e7443b31d..309261f26b 100644 --- a/extensions/sql-migration/src/dashboard/dashboardTab.ts +++ b/extensions/sql-migration/src/dashboard/dashboardTab.ts @@ -141,7 +141,6 @@ export class DashboardTab extends TabBase { const toolbar = view.modelBuilder.toolbarContainer(); toolbar.addToolbarItems([ { component: this.createNewMigrationButton() }, - { component: this.createNewLoginMigrationButton() }, { component: this.createNewSupportRequestButton() }, { component: this.createFeedbackButton() }, ]); diff --git a/extensions/sql-migration/src/dashboard/migrationsListTab.ts b/extensions/sql-migration/src/dashboard/migrationsListTab.ts index 58b932d809..0ac32b3f24 100644 --- a/extensions/sql-migration/src/dashboard/migrationsListTab.ts +++ b/extensions/sql-migration/src/dashboard/migrationsListTab.ts @@ -144,7 +144,6 @@ export class MigrationsListTab extends TabBase { toolbar.addToolbarItems([ { component: this.createNewMigrationButton(), toolbarSeparatorAfter: true }, - { component: this.createNewLoginMigrationButton(), toolbarSeparatorAfter: true }, { component: this.createNewSupportRequestButton() }, { component: this.createFeedbackButton(), toolbarSeparatorAfter: true }, { component: this._refreshLoader },