Skip to content

Commit

Permalink
ajout du pipe safeHTML pour prise en compte des attributs style
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrieuclp committed Mar 11, 2024
1 parent 45fec53 commit 49f4011
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/app/components/footer/footer.component.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<div [innerHTML]="config.HOME.FOOTER"></div>
<div [innerHTML]="(config.HOME.FOOTER) | safeHTML"></div>
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
></div>
<div
class="panel-body"
[innerHTML]="config.HOME.INTRODUCTION"
[innerHTML]="(config.HOME.INTRODUCTION) | safeHTML"
></div>
</div>
</div>
Expand Down

0 comments on commit 49f4011

Please sign in to comment.