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

(-)a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js (-2 / +5 lines)
Lines 247-253 $(document).ready(function() { Link Here
247
                "data": "", // author
247
                "data": "", // author
248
                "orderable": false,
248
                "orderable": false,
249
                "render": function(data, type, row, meta) {
249
                "render": function(data, type, row, meta) {
250
                    return display_extended_attribute(row, 'author');
250
                    const author = display_extended_attribute(row, 'author');
251
                    if(author) return author
252
                    const articleAuthor = display_extended_attribute(row, 'article_author');
253
                    if(articleAuthor) return articleAuthor
254
                    return ''
251
                }
255
                }
252
            },
256
            },
253
            {
257
            {
254
- 

Return to bug 36894