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 491-499 a.add, a.delete { Link Here
491
                                    <thead>
491
                                    <thead>
492
                                        <tr>
492
                                        <tr>
493
                                            <th>Order</th>
493
                                            <th>Order</th>
494
                                            <th>Search field</th>
494
                                            <th class="NoSort">Search field</th>
495
                                            <th>Label</th>
495
                                            <th class="NoSort">Label</th>
496
                                            <th>Display</th>
496
                                            <th class="NoSort">Display</th>
497
                                        </tr>
497
                                        </tr>
498
                                    </thead>
498
                                    </thead>
499
                                    <tbody>
499
                                    <tbody>
(-)a/koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js (-2 / +1 lines)
Lines 103-109 $(document).ready(function () { Link Here
103
    $("#facet_biblios_table").DataTable(
103
    $("#facet_biblios_table").DataTable(
104
        $.extend(true, {}, dataTablesDefaults, {
104
        $.extend(true, {}, dataTablesDefaults, {
105
            "columnDefs": [
105
            "columnDefs": [
106
                { "orderable": false, "searchable": false, 'targets': ['NoSort'] },
106
                { "orderable": false, "targets": [ "NoSort" ] },
107
                { "searchable": false, "visible": false, "targets": 0 }
107
                { "searchable": false, "visible": false, "targets": 0 }
108
            ],
108
            ],
109
            "dom": "t",
109
            "dom": "t",
110
- 

Return to bug 35249