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 (-1 / +1 lines)
Lines 487-493 a.add, a.delete { Link Here
487
                            <h3>Facet order</h3>
487
                            <h3>Facet order</h3>
488
                            <div class="hint">Drag and drop rows to change the order</div>
488
                            <div class="hint">Drag and drop rows to change the order</div>
489
                            <div id="facet_[% index.index_name | html %]">
489
                            <div id="facet_[% index.index_name | html %]">
490
                                <table id="facetst">
490
                                <table id="facet_[% index.index_name | html %]_table" style="max-width: 50%; margin: 0;">
491
                                    <thead>
491
                                    <thead>
492
                                        <tr>
492
                                        <tr>
493
                                            <th>Order</th>
493
                                            <th>Order</th>
(-)a/koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js (-2 / +1 lines)
Lines 100-106 $(document).ready(function () { Link Here
100
        }
100
        }
101
    });
101
    });
102
102
103
    $("#facetst").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, "searchable": false, 'targets': ['NoSort'] },
107
- 

Return to bug 35249