Merge pull request 'feat(dashboard): update getShortLink to use HTTPS' (#9) from main into prod
All checks were successful
Release / Release (push) Successful in 1m47s
All checks were successful
Release / Release (push) Successful in 1m47s
Reviewed-on: #9
This commit is contained in:
commit
4c2007730f
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ export class DashboardComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
getShortLink(id: string): string {
|
getShortLink(id: string): string {
|
||||||
return window.location.hostname + '/' + id;
|
return "https://" + window.location.hostname + '/' + id;
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
|
|
Loading…
Add table
Reference in a new issue