feat(dashboard): update getShortLink to use HTTPS #9

Merged
jank merged 1 commit from main into prod 2025-01-21 10:47:30 +00:00
Showing only changes of commit 8b08c6616c - Show all commits

feat(dashboard): update getShortLink to use HTTPS

Jan K9f 2025-01-21 11:47:04 +01:00
Signed by: jank
GPG key ID: 50620ADD22CD330B

View file

@ -25,7 +25,7 @@ export class DashboardComponent {
}
getShortLink(id: string): string {
return window.location.hostname + '/' + id;
return "https://" + window.location.hostname + '/' + id;
}
ngOnInit(): void {