Fix Release Notes link to refer to correct location (#1665)

* Fix Release Notes link to refer to correct location

* Fix typo
This commit is contained in:
Karl Burtram
2018-06-18 20:18:24 -04:00
committed by GitHub
parent e1a36a356c
commit 676d35090f
4 changed files with 7 additions and 5 deletions

View File

@@ -999,8 +999,8 @@ export class CodeMenu {
arrays.coalesce([
// new MenuItem({ label: mnemonicLabel(nls.localize({ key: 'miWelcome', comment: ['&& denotes a mnemonic'] }, "&&Welcome")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.showWelcomePage') }),
// {{SQL CARBON EDIT}}
product.releaseNotesUrl ?
this.createMenuItem(nls.localize({ key: 'miReleaseNotes', comment: ['&& denotes a mnemonic'] }, "Getting &&Started"), 'update.showCurrentCarbonReleaseNotes')
product.gettingStartedUrl ?
this.createMenuItem(nls.localize({ key: 'miGettingStarted', comment: ['&& denotes a mnemonic'] }, "Getting &&Started"), 'update.showGettingStarted')
: null,
product.documentationUrl ?
this.createMenuItem(nls.localize({ key: 'miDocumentation', comment: ['&& denotes a mnemonic'] }, "&&Documentation"), 'workbench.action.openDocumentationUrl')