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

(-)a/koha-tmpl/intranet-tmpl/prog/js/datatables.js (-1 / +1 lines)
Lines 1143-1149 function _dt_save_restore_state(table_settings, external_filter_nodes={}){ Link Here
1143
            _dt_add_filters(this, table_dt, filters_options);
1143
            _dt_add_filters(this, table_dt, filters_options);
1144
        }
1144
        }
1145
1145
1146
        table_dt.on("column-visibility.dt", function(){
1146
        table_dt.on("draw", function(){
1147
            if ( add_filters ) {
1147
            if ( add_filters ) {
1148
                _dt_add_filters(this, table_dt, filters_options);
1148
                _dt_add_filters(this, table_dt, filters_options);
1149
            }
1149
            }
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue (-2 / +1 lines)
Lines 224-230 export default { Link Here
224
            _dt_add_filters(table_node, dt, filters_options)
224
            _dt_add_filters(table_node, dt, filters_options)
225
        }
225
        }
226
226
227
        dt.on("column-visibility.dt", function () {
227
        dt.on("draw", function () {
228
            if (add_filters) {
228
            if (add_filters) {
229
                _dt_add_filters(table_node, dt, filters_options)
229
                _dt_add_filters(table_node, dt, filters_options)
230
            }
230
            }
231
- 

Return to bug 38391