mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Fix issue reporter URLs for extensions (#14077)
* Fix issue reporter URLs for extensions * Also clean up reporter URL * sql carbon edit
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
"darwinBundleIdentifier": "com.azuredatastudio.oss",
|
||||
"linuxIconName": "com.azuredatastudio.oss",
|
||||
"licenseFileName": "LICENSE.txt",
|
||||
"reportIssueUrl": "https://github.com/Microsoft/azuredatastudio/issues/new?labels=customer%20reported%20issue",
|
||||
"reportIssueUrl": "https://github.com/Microsoft/azuredatastudio/issues/new",
|
||||
"requestFeatureUrl": "https://go.microsoft.com/fwlink/?linkid=2118021",
|
||||
"privacyStatementUrl": "https://privacy.microsoft.com/en-us/privacystatement",
|
||||
"telemetryOptOutUrl": "https://github.com/Microsoft/azuredatastudio/wiki/How-to-Disable-Telemetry-Reporting",
|
||||
@@ -30,7 +30,7 @@
|
||||
"asimovKey": "AIF-37eefaf0-8022-4671-a3fb-64752724682e"
|
||||
},
|
||||
"sendASmile": {
|
||||
"reportIssueUrl": "https://github.com/Microsoft/azuredatastudio/issues/new?labels=customer%20reported%20issue",
|
||||
"reportIssueUrl": "https://github.com/Microsoft/azuredatastudio/issues/new",
|
||||
"requestFeatureUrl": "https://go.microsoft.com/fwlink/?linkid=2118115"
|
||||
},
|
||||
"gettingStartedUrl": "https://go.microsoft.com/fwlink/?linkid=862039",
|
||||
|
||||
@@ -861,7 +861,7 @@ export class IssueReporter extends Disposable {
|
||||
}
|
||||
}
|
||||
|
||||
const queryStringPrefix = this.configuration.product.reportIssueUrl && this.configuration.product.reportIssueUrl.indexOf('?') === -1 ? '?' : '&';
|
||||
const queryStringPrefix = repositoryUrl && repositoryUrl.indexOf('?') === -1 ? '?' : '&'; // {{ SQL CARBON EDIT }}
|
||||
return `${repositoryUrl}${queryStringPrefix}title=${encodeURIComponent(issueTitle)}`;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user