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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-2 / +1 lines)
Lines 2875-2881 Link Here
2875
                searchable: true,
2875
                searchable: true,
2876
                orderable: true,
2876
                orderable: true,
2877
                render: function (data, type, row, meta) {
2877
                render: function (data, type, row, meta) {
2878
                    return row.public_notes; // FIXME Replace \n with br
2878
                    return row.public_notes ? row.public_notes.replaceAll('\n', '<br />') : '';
2879
                }
2879
                }
2880
            },
2880
            },
2881
            {
2881
            {
2882
- 

Return to bug 33568