mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-31 22:34:37 -04:00
Fixes for encoded entities in client portal
This commit is contained in:
parent
29b9ac2894
commit
9dfbeb2beb
@ -156,7 +156,7 @@ span {
|
||||
</button>
|
||||
|
||||
<div id="notes" class="py-10 border-b-2 border-fuschia-600" x-show="show_notes">
|
||||
{{ strip_tags($entity->public_notes) }}
|
||||
{!! html_entity_decode($entity->public_notes) !!}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@ -171,7 +171,7 @@ span {
|
||||
</button>
|
||||
|
||||
<div id="terms" class="py-10 border-b-2 border-fuschia-600" x-show="show_terms">
|
||||
{{ strip_tags($entity->terms) }}
|
||||
{!! html_entity_decode($entity->terms) !!}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@ -186,7 +186,7 @@ span {
|
||||
</button>
|
||||
|
||||
<div id="terms" class="py-10 border-b-2 border-fuschia-600" x-show="show_footer">
|
||||
{{ strip_tags($entity->footer) }}
|
||||
{!! html_entity_decode($entity->footer) !!}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user