diff --git a/src/app/components/help/help.component.ts b/src/app/components/help/help.component.ts index 57e28cfb..512a9d21 100644 --- a/src/app/components/help/help.component.ts +++ b/src/app/components/help/help.component.ts @@ -15,7 +15,7 @@ export class HelpComponent implements OnInit { ) {} ngOnInit() { - this.httpClient.get('/3rdpartylicenses.txt', {responseType: 'text'}) + this.httpClient.get(window.location.href + '/3rdpartylicenses.txt', {responseType: 'text'}) .subscribe(data => { this.thirdpartylicenses = data.replace(new RegExp('\n', 'g'), "
") },