View | Details | Raw Unified | Return to bug 39932
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc (-2 / +1 lines)
Lines 511-517 Link Here
511
                    orderable: false,
511
                    orderable: false,
512
                    render: function (data, type, row, meta) {
512
                    render: function (data, type, row, meta) {
513
                        let nodes = "";
513
                        let nodes = "";
514
                        row._status.split(",").forEach( status => {
514
                        row._status.forEach( status => {
515
                            if ( status == 'checked_out' || status == 'local_use') {
515
                            if ( status == 'checked_out' || status == 'local_use') {
516
                                nodes += '<span>';
516
                                nodes += '<span>';
517
517
518
- 

Return to bug 39932