From a04c2f3ba6d8e958341b1cefa48fefdd4a1d9577 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Tue, 26 Jan 2021 18:02:36 -0800 Subject: [PATCH] Fix resource viewer not showing on insiders builds (#14063) --- .../resourceViewer/browser/resourceViewer.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/workbench/contrib/resourceViewer/browser/resourceViewer.contribution.ts b/src/sql/workbench/contrib/resourceViewer/browser/resourceViewer.contribution.ts index 45fe5e6999..0306b7db93 100644 --- a/src/sql/workbench/contrib/resourceViewer/browser/resourceViewer.contribution.ts +++ b/src/sql/workbench/contrib/resourceViewer/browser/resourceViewer.contribution.ts @@ -55,7 +55,7 @@ class ResourceViewerContributor implements IWorkbenchContribution { @IProductService readonly productService: IProductService ) { // Only show for insiders and dev - if (['insiders', ''].includes(productService.quality ?? '') && configurationService.getValue('workbench.enablePreviewFeatures')) { + if (['insider', ''].includes(productService.quality ?? '') && configurationService.getValue('workbench.enablePreviewFeatures')) { registerResourceViewerContainer(); } }