Skip to content

Commit

Permalink
What's new link redirection #188
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanebouget committed Jul 1, 2024
1 parent fda99bd commit eac0cc2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 0 additions & 4 deletions src/app/core/services/config.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ export class ConfigService {
this.config.setDatas(datas);
}

openReleaseNotesDialog() {
this.config.openReleaseNotesDialog();
}

openChannelDialog(cb) {
this.config.openChannelDialog(cb);
}
Expand Down
8 changes: 6 additions & 2 deletions src/app/core/services/menu.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ export class MenuService {
' ' +
LibVersionService.getAppVersion(),
click: () => {
this.configService.openReleaseNotesDialog();
this.electronService.shell.openExternal(
'https://github.com/KhiopsML/kv-electron/releases'
);
},
},
// {
Expand All @@ -142,7 +144,9 @@ export class MenuService {
label: this.translate.instant('GLOBAL_MENU_RELEASE_NOTES'),
click: () => {
// this.trackerService.trackEvent('page_view', 'release_notes');
this.configService.openReleaseNotesDialog();
this.electronService.shell.openExternal(
'https://github.com/KhiopsML/kv-electron/releases'
);
},
},
{
Expand Down

0 comments on commit eac0cc2

Please # to comment.