@@ -, +, @@ for us --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -600,9 +600,9 @@ $(document).ready(function() { "dataSrc": "issued_today", "startRender": function ( rows, group ) { if ( group ) { - return $('').append("" + TODAYS_CHECKOUTS + ""); + return TODAYS_CHECKOUTS; } else { - return $('').append("" + PREVIOUS_CHECKOUTS + ""); + return PREVIOUS_CHECKOUTS; } } }, --