diff --git a/src/sql/workbench/contrib/dashboard/browser/core/dashboardPage.component.ts b/src/sql/workbench/contrib/dashboard/browser/core/dashboardPage.component.ts index 6b2650672f..ce4b75a480 100644 --- a/src/sql/workbench/contrib/dashboard/browser/core/dashboardPage.component.ts +++ b/src/sql/workbench/contrib/dashboard/browser/core/dashboardPage.component.ts @@ -300,7 +300,8 @@ export abstract class DashboardPage extends AngularDisposable implements IConfig this.loadNewTabs(allTabs.filter((tab) => tab.group === homeTabGroupId)); - // If preview features are disabled only show the home tab + // If preview features are disabled only show the home tab since extension-contributed tabs + // are still under preview const extensionTabsEnabled = this.configurationService.getValue('workbench')['enablePreviewFeatures']; if (!extensionTabsEnabled) { allTabs = []; diff --git a/src/sql/workbench/contrib/dashboard/browser/core/dashboardTab.contribution.ts b/src/sql/workbench/contrib/dashboard/browser/core/dashboardTab.contribution.ts index 30f51384cd..6bc86994c0 100644 --- a/src/sql/workbench/contrib/dashboard/browser/core/dashboardTab.contribution.ts +++ b/src/sql/workbench/contrib/dashboard/browser/core/dashboardTab.contribution.ts @@ -167,7 +167,6 @@ ExtensionsRegistry.registerExtensionPoint