mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 10:34:30 -04:00
Truncate subscription target
This commit is contained in:
parent
3804e3daa1
commit
d686b97ad8
@ -20,7 +20,7 @@ class SubscriptionDatatable extends EntityDatatable
|
|||||||
[
|
[
|
||||||
'target',
|
'target',
|
||||||
function ($model) {
|
function ($model) {
|
||||||
return $model->target;
|
return e(substr($model->target, 0, 40) . (strlen($model->target) > 40 ? '...' : ''));
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user