diff --git a/src/app/components/noosfero/profile-image/profile-image.component.ts b/src/app/components/noosfero/profile-image/profile-image.component.ts index ff417bc..c59e8c2 100644 --- a/src/app/components/noosfero/profile-image/profile-image.component.ts +++ b/src/app/components/noosfero/profile-image/profile-image.component.ts @@ -8,11 +8,10 @@ import {Profile} from "./../../../models/interfaces"; export class ProfileImage { @Input() profile: Profile; - defaultIcon: any; + defaultIcon: string; ngOnInit() { this.defaultIcon = 'fa-users'; - console.debug("On ProfileImage ngOnInit. Profile: " + this.profile) if (this.profile && this.profile.type === 'Person') { this.defaultIcon = 'fa-user'; } -- libgit2 0.21.2