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

(-)a/koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js (-4 / +3 lines)
Lines 84-92 $(document).ready(function () { Link Here
84
    });
84
    });
85
85
86
    $("#es_mappings").on("submit", function(e){
86
    $("#es_mappings").on("submit", function(e){
87
        $("#search_fields_table").DataTable().search('').draw();
87
        $("#search_fields_table").DataTable({ paging: false }).search('').draw();
88
        $("#mapping_biblios_table").DataTable().search('').draw();
88
        $("#mapping_biblios_table").DataTable({ paging: false }).search('').draw();
89
        $("#mapping_authorities_table").DataTable().search('').draw();
89
        $("#mapping_authorities_table").DataTable({ paging: false }).search('').draw();
90
        return true;
90
        return true;
91
    });
91
    });
92
});
92
});
93
- 

Return to bug 29893