Skip to content
Snippets Groups Projects
Commit 1609a06a authored by Giuseppe Digilio's avatar Giuseppe Digilio
Browse files

made sure that content and title notification are not interpreted as html

parent 7a4f15c3
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@
<ng-container *ngTemplateOutlet="title"></ng-container>
</div>
<ng-template #regularTitle>
<div class="notification-title pl-1" [innerHTML]="(title | async)"></div>
<div class="notification-title pl-1">{{(title | async)}}</div>
</ng-template>
</strong>
</div>
......@@ -39,7 +39,7 @@
<ng-container *ngTemplateOutlet="content"></ng-container>
</div>
<ng-template #regularContent>
<div class="notification-content pl-1" [innerHTML]="(content | async)"></div>
<div class="notification-content pl-1">{{(content | async)}}</div>
</ng-template>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment