I am using MatDialog and trying to add a new line in the content definition. Both n
and </b>
are not doing it. Is there another way without having to manually go into the html and change it since it’s a reusable component:
JavaScript
x
4
1
var status: MatDialogRef<GenericDialogComponent> this.dialog.open(GenericDialogComponent,{
2
width: '400px',
3
data: {title: "Sample Title?", content: "Document " + this.docID + " has been saved. The users email address is provied below:nn"+this.email+"</b>"} });
4
HTML
JavaScript
1
9
1
<h1 mat-dialog-title>{{data.title}}</h1>
2
<div mat-dialog-content>
3
<p>{{data.content}}</p>
4
</div>
5
<div mat-dialog-actions>
6
<button mat-button (click)="Cancel()">Cancel</button>
7
<button mat-button (click)="Ok()" cdkFocusInitial>Ok</button>
8
</div>
9
Advertisement
Answer
You can use the [innerHTML] property:
JavaScript
1
2
1
<p [innerHTML]="data.content"></p>
2
and instead of nn, use the html br tag.
JavaScript
1
4
1
const status: MatDialogRef<GenericDialogComponent> this.dialog.open(GenericDialogComponent,{
2
width: '400px',
3
data: {title: "Sample Title?", content: `Document ${this.docID} has been saved. The users email address is provied below:<br /><b>${this.email+}</b>`} });
4