We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3bde69 commit 068357dCopy full SHA for 068357d
src/vs/workbench/services/issue/electron-sandbox/issueService.ts
@@ -47,7 +47,7 @@ export class WorkbenchIssueService implements IWorkbenchIssueService {
47
extensionData.push(...enabledExtensions.map((extension): IssueReporterExtensionData => {
48
const { manifest } = extension;
49
const manifestKeys = manifest.contributes ? Object.keys(manifest.contributes) : [];
50
- const isTheme = !manifest.activationEvents && manifestKeys.length === 1 && manifestKeys[0] === 'themes';
+ const isTheme = !manifest.main && !manifest.browser && manifestKeys.length === 1 && manifestKeys[0] === 'themes';
51
const isBuiltin = extension.type === ExtensionType.System;
52
return {
53
name: manifest.name,
0 commit comments