Fix wrong release notes being loaded (#5008)

This commit is contained in:
Charles Gagnon
2019-04-11 16:56:55 -07:00
committed by Chris LaFreniere
parent b475311f85
commit e3afb1cffc

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();
}