Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update issue-reporter.ts #5983

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
14 changes: 9 additions & 5 deletions vscode/src/services/utils/issue-reporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@ export function openCodyIssueReporter() {
})
}

const issueBody = `## Extension Information
<!-- Do not remove the pre-filled information below -->
- Cody Version: ${version}
- VS Code Version: ${vscode.version}
- Extension Host: ${vscode.env.appHost}
const issueBody = `# Please complete the information below before submitting this form.

## Extension Information

## Steps to Reproduce
<!-- A detailed description of the issue -->
Expand All @@ -28,4 +26,10 @@ const issueBody = `## Extension Information

## Logs
<!-- Attach logs from the 'Cody Debug: Export Logs' command -->

<!-- Do not remove this section -->
- Cody Version: ${version}
- VS Code Version: ${vscode.version}
- Extension Host: ${vscode.env.appHost}
<!-- // -->
`
Loading