From 5bc99e659e3b53a09349a08c205b3ac267b79b46 Mon Sep 17 00:00:00 2001 From: Julia Silge Date: Tue, 23 Jul 2024 15:41:01 -0700 Subject: [PATCH] Update issue reporter for changes from recent upstream merges (#4129) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- src/vs/workbench/contrib/issue/browser/issue.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/issue/browser/issue.ts b/src/vs/workbench/contrib/issue/browser/issue.ts index 3bc09a5a6c6..31520f92d11 100644 --- a/src/vs/workbench/contrib/issue/browser/issue.ts +++ b/src/vs/workbench/contrib/issue/browser/issue.ts @@ -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));