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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/searchengine/elasticsearch/mappings.tt (-3 / +3 lines)
Lines 462-470 a.add, a.delete { Link Here
462
                                    <thead>
462
                                    <thead>
463
                                        <tr>
463
                                        <tr>
464
                                            <th>Order</th>
464
                                            <th>Order</th>
465
                                            <th>Search field</th>
465
                                            <th class="NoSort">Search field</th>
466
                                            <th>Label</th>
466
                                            <th class="NoSort">Label</th>
467
                                            <th>Display</th>
467
                                            <th class="NoSort">Display</th>
468
                                        </tr>
468
                                        </tr>
469
                                    </thead>
469
                                    </thead>
470
                                    <tbody>
470
                                    <tbody>
(-)a/koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js (-2 / +1 lines)
Lines 82-88 $(document).ready(function () { Link Here
82
    $("#facet_biblios_table").DataTable(
82
    $("#facet_biblios_table").DataTable(
83
        $.extend(true, {}, dataTablesDefaults, {
83
        $.extend(true, {}, dataTablesDefaults, {
84
            "columnDefs": [
84
            "columnDefs": [
85
                { "orderable": false, "searchable": false, 'targets': ['NoSort'] },
85
                { "orderable": false, "targets": [ "NoSort" ] },
86
                { "searchable": false, "visible": false, "targets": 0 }
86
                { "searchable": false, "visible": false, "targets": 0 }
87
            ],
87
            ],
88
            "dom": "t",
88
            "dom": "t",
89
- 

Return to bug 35249