Fix wrong release notes being loaded (#5008)

This commit is contained in:
Charles Gagnon
2019-04-11 16:56:55 -07:00
committed by GitHub
parent 3349151d4c
commit 11e4b743e0

View File

@@ -491,7 +491,8 @@ export class UpdateContribution implements IGlobalActivity {
actions.push({
label: nls.localize('releaseNotes', "Release Notes"),
run: () => {
const action = this.instantiationService.createInstance(ShowReleaseNotesAction, update.productVersion);
// {{SQL CARBON EDIT}}
const action = this.instantiationService.createInstance(OpenLatestReleaseNotesInBrowserAction);
action.run();
action.dispose();
}