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

Fixes for alignment of text issues in subscription order overview

This commit is contained in:
David Bomba 2022-12-18 21:47:09 +11:00
parent fd789ffddc
commit 8049e4d294

View File

@ -209,7 +209,7 @@
@foreach($bundle->toArray() as $item)
<div class="flex justify-between mt-1 mb-1">
<span class="font-light text-sm uppercase">{{$item['product']}} x {{$item['qty']}}</span>
<span class="font-light text-sm">{{ substr(str_replace(["BR","\r","\n","<BR>","<BR />","<br>","<br />"]," ", $item['product']), 0, 30) . "..." }} x {{ $item['qty'] }}</span>
<span class="font-bold text-sm">{{ $item['price'] }}</span>
</div>
@endforeach