BugFix: #103,#101, heart instead disk icon

This commit is contained in:
2024-09-04 17:43:23 +02:00
parent 3b012a8113
commit 624fa74eb6
4 changed files with 6 additions and 6 deletions

View File

@@ -57,7 +57,7 @@ export class DetailsUserComponent {
//this.user$ = this.userService.getUserObservable();
const token = await this.keycloakService.getToken();
this.keycloakUser = map2User(token);
this.companyOverview = this.sanitizer.bypassSecurityTrustHtml(this.user.companyOverview);
this.companyOverview = this.sanitizer.bypassSecurityTrustHtml(this.user.companyOverview ? this.user.companyOverview : '');
this.offeredServices = this.sanitizer.bypassSecurityTrustHtml(this.user.offeredServices ? this.user.offeredServices : '');
}