mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-01 00:24:36 -04:00
Fixes for encoded entities in client portal
This commit is contained in:
parent
29b9ac2894
commit
9dfbeb2beb
@ -268,7 +268,7 @@ class PdfSlot extends Component
|
|||||||
'line_total' => Number::formatMoney($item->line_total, $this->entity->client ?: $this->entity->vendor),
|
'line_total' => Number::formatMoney($item->line_total, $this->entity->client ?: $this->entity->vendor),
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
return $product_items;
|
return $product_items;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -156,7 +156,7 @@ span {
|
|||||||
</button>
|
</button>
|
||||||
|
|
||||||
<div id="notes" class="py-10 border-b-2 border-fuschia-600" x-show="show_notes">
|
<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>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -171,7 +171,7 @@ span {
|
|||||||
</button>
|
</button>
|
||||||
|
|
||||||
<div id="terms" class="py-10 border-b-2 border-fuschia-600" x-show="show_terms">
|
<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>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -186,7 +186,7 @@ span {
|
|||||||
</button>
|
</button>
|
||||||
|
|
||||||
<div id="terms" class="py-10 border-b-2 border-fuschia-600" x-show="show_footer">
|
<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>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user