angular use safe value from code behind SafeValue must use [property]=binding: code example
Example: SafeValue must use [property]=binding:
constructor(private domSanitizer:DomSanitizer) {
this.massTimingsHtml = this.getInnerHTMLValue();
}
getInnerHTMLValue(){
return this.domSanitizer.bypassSecurityTrustHtml(this.parishDetail.mass_timings);
}