Bump sql-migration version to 1.2.2 (#21717)

This PR bumps sql-migration version to 1.2.2 in order to release to insider's gallery. This also disables the LoginMigration button as we do not want to release it to public yet.
This commit is contained in:
AkshayMata
2023-01-24 15:13:18 -08:00
committed by GitHub
parent 6631f8e2d9
commit 427a859c63
3 changed files with 1 additions and 3 deletions

View File

@@ -141,7 +141,6 @@ export class DashboardTab extends TabBase<DashboardTab> {
const toolbar = view.modelBuilder.toolbarContainer();
toolbar.addToolbarItems([
<azdata.ToolbarComponent>{ component: this.createNewMigrationButton() },
<azdata.ToolbarComponent>{ component: this.createNewLoginMigrationButton() },
<azdata.ToolbarComponent>{ component: this.createNewSupportRequestButton() },
<azdata.ToolbarComponent>{ component: this.createFeedbackButton() },
]);

View File

@@ -144,7 +144,6 @@ export class MigrationsListTab extends TabBase<MigrationsListTab> {
toolbar.addToolbarItems([
<azdata.ToolbarComponent>{ component: this.createNewMigrationButton(), toolbarSeparatorAfter: true },
<azdata.ToolbarComponent>{ component: this.createNewLoginMigrationButton(), toolbarSeparatorAfter: true },
<azdata.ToolbarComponent>{ component: this.createNewSupportRequestButton() },
<azdata.ToolbarComponent>{ component: this.createFeedbackButton(), toolbarSeparatorAfter: true },
<azdata.ToolbarComponent>{ component: this._refreshLoader },