1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00

Fixes for signature line breaks / HTML formatting

This commit is contained in:
David Bomba 2021-03-17 11:35:41 +11:00
parent 059cec705d
commit 35bca3d7b6
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@
<br>
<br>
<p>
{{ $signature }}
{!! $signature !!}
</p>
@endif

View File

@ -10,7 +10,7 @@
<br>
<br>
<p>
{{ $signature }}
{!! $signature !!}
</p>
@endif

View File

@ -27,7 +27,7 @@
@if($signature)
<tr>
<td>
<p>{{ $signature }}</p>
<p>{!! $signature !!}</p>
</td>
</tr>
@endif