Fix sidebar menu links

This commit is contained in:
Geomitron
2023-12-25 09:16:30 -06:00
parent 99cfb306be
commit 5644ea2447
3 changed files with 5 additions and 4 deletions

View File

@@ -63,6 +63,10 @@ export class ChartSidebarMenutComponent implements OnInit {
return breadcrumbs
}
openUrl(url: string) {
window.electron.emit.openUrl(url)
}
joinPaths(...args: string[]) {
return args.join('/')
.replace(/\/+/g, '/')