1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

Fix for <br/> in product list

This commit is contained in:
Hillel Coren 2017-08-11 12:44:55 +03:00
parent 5f68a2ac00
commit 7f8fbbda64

View File

@ -24,7 +24,7 @@ class ProductDatatable extends EntityDatatable
[
'notes',
function ($model) {
return e(nl2br(Str::limit($model->notes, 100)));
return e(Str::limit($model->notes, 100));
},
],
[