mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-21 01:25:37 -05:00
Fix resource viewer not showing on insiders builds (#14063)
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user