Heading of an issue created by the issue reporter should be more compact, fixes #43934

This commit is contained in:
Rachel Macfarlane
2018-02-20 17:20:05 -08:00
parent 883b83823f
commit 659220ac98
2 changed files with 2 additions and 12 deletions

View File

@@ -61,15 +61,10 @@ export class IssueReporterModel {
serialize(): string {
return `
### Issue Type
${this.getIssueTypeTitle()}
### Description
Issue Type: ${this.getIssueTypeTitle()}
${this._data.issueDescription}
### VS Code Info
VS Code version: ${this._data.versionInfo && this._data.versionInfo.vscodeVersion}
OS version: ${this._data.versionInfo && this._data.versionInfo.os}

View File

@@ -27,15 +27,10 @@ suite('IssueReporter', () => {
const issueReporterModel = new IssueReporterModel();
assert.equal(issueReporterModel.serialize(),
`
### Issue Type
Feature Request
### Description
Issue Type: Feature Request
undefined
### VS Code Info
VS Code version: undefined
OS version: undefined