enter image description here ClientCommunicationItems(){ this.busy = this.clientService.getClientCommunication(this.clientID).subscribe(result => {
if (result.length > 0) {
this.communicationItems = result;
this.showRecords = true;
}
else
this.showRecords = false;
if (this.communicationItems[0].message.includes("<html") || this.communicationItems[0].message.includes("<div")) {
this.loadHtml = true;
}
else
this.loadHtml = false;
console.log(this.communicationItems);
})
}