From a6635c2ffbc7eb12f4aee035168890feee548965 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Fri, 11 Aug 2017 12:44:45 +0300 Subject: [PATCH] Fix for
in product list --- app/Ninja/Datatables/ProductDatatable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Ninja/Datatables/ProductDatatable.php b/app/Ninja/Datatables/ProductDatatable.php index 43343f0cf753..418a85d95d49 100644 --- a/app/Ninja/Datatables/ProductDatatable.php +++ b/app/Ninja/Datatables/ProductDatatable.php @@ -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)); }, ], [