1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00

Merge pull request #5154 from turbo124/v5-develop

Fixes for signature line breaks / HTML formatting
This commit is contained in:
David Bomba 2021-03-17 11:36:45 +11:00 committed by GitHub
commit 5a6a7248eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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