Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration)
properties: {
'issueReporter.experimental.webReporter': {
type: 'boolean',
default: true,
default: false,
description: 'Enable experimental issue reporter for web.',
},
}
Expand Down
5 changes: 3 additions & 2 deletions src/vs/workbench/contrib/issue/browser/issueService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/

import * as dom from 'vs/base/browser/dom';
import { userAgent } from 'vs/base/common/platform';
import { isFirefox, userAgent } from 'vs/base/common/platform';
import { IExtensionDescription, ExtensionType } from 'vs/platform/extensions/common/extensions';
import { normalizeGitHubUrl } from 'vs/platform/issue/common/issueReporterUtil';
import { getZoomLevel } from 'vs/base/browser/browser';
Expand Down Expand Up @@ -49,7 +49,8 @@ export class BrowserIssueService implements IWorkbenchIssueService {
}

async openReporter(options: Partial<IssueReporterData>): Promise<void> {
if (!this.configurationService.getValue<boolean>('issueReporter.experimental.webReporter')) {
// If web reporter setting is false, or if we are in Firefox, open the old GitHub issue reporter
if (!this.configurationService.getValue<boolean>('issueReporter.experimental.webReporter') || isFirefox) {
const extensionId = options.extensionId;
// If we don't have a extensionId, treat this as a Core issue
if (!extensionId) {
Expand Down