Skip to content

Commit

Permalink
Update issue reporter for changes from recent upstream merges (#4129)
Browse files Browse the repository at this point in the history
Addresses #4123 

### QA Notes

With this change, we should be back to having Positron in the issue
reporter:

![Screenshot 2024-07-23 at 10 53
02 AM](https://github.com/user-attachments/assets/fcabfaf5-6fcd-4605-b372-aee008c73299)


If you click "Preview" it will open an issue draft on our real/regular
repo.
  • Loading branch information
juliasilge authored Jul 23, 2024
1 parent 13e84df commit 5bc99e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/vs/workbench/contrib/issue/browser/issue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,9 @@ export class BaseIssueReporterService extends Disposable {

sourceSelect.innerText = '';
sourceSelect.append(this.makeOption('', localize('selectSource', "Select source"), true));
sourceSelect.append(this.makeOption(IssueSource.VSCode, localize('vscode', "Visual Studio Code"), false));
// --- Start Positron ---
sourceSelect.append(this.makeOption(IssueSource.VSCode, localize('positron', "Positron"), false));
// --- End Positron ---
sourceSelect.append(this.makeOption(IssueSource.Extension, localize('extension', "A VS Code extension"), false));
if (this.product.reportMarketplaceIssueUrl) {
sourceSelect.append(this.makeOption(IssueSource.Marketplace, localize('marketplace', "Extensions Marketplace"), false));
Expand Down

0 comments on commit 5bc99e6

Please sign in to comment.