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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc (-3 / +2 lines)
Lines 125-132 Link Here
125
125
126
    function update_columns_visibility(settings){
126
    function update_columns_visibility(settings){
127
        let table = settings.oInstance.api();
127
        let table = settings.oInstance.api();
128
        table.columns().visible(true, false);
128
        table.columns().every(function(){
129
        table.columns().every(function(i){
129
            let i = this.index();
130
            let is_empty = true;
130
            let is_empty = true;
131
            let nodes = this.nodes();
131
            let nodes = this.nodes();
132
            nodes.each((td, ii) => {
132
            nodes.each((td, ii) => {
133
- 

Return to bug 38436