fixed corrupted profile icons

This commit is contained in:
Eugene Pankov 2020-01-16 17:48:40 +01:00
parent de3829a94c
commit b922fe7776

View File

@ -9,6 +9,6 @@ export class FastHtmlBindDirective implements OnChanges {
constructor (private el: ElementRef) { }
ngOnChanges () {
this.el.nativeElement.innerHTML = this.fastHtmlBind
this.el.nativeElement.innerHTML = this.fastHtmlBind || ''
}
}