From b1ff250513d56958f297622a21d97858addc3549 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 28 Jan 2025 10:35:18 +0100 Subject: [PATCH] Bug 26553: Fix incorrect occurrences of 'sortable' => 'orderable' --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt index cf4925be4e1..46717afa511 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt @@ -567,7 +567,7 @@ $("#suggestt").kohaTable({ "order": [[ 1, "asc" ]], "columnDefs": [ - [% IF ( loggedinusername ) %]{ "targets": [ 0 ], "sortable": false, "searchable": false }[% END %], + [% IF ( loggedinusername ) %]{ "targets": [ 0 ], "orderable": false, "searchable": false }[% END %], { "className": 'dtr-control', "orderable": false, "targets": -1 }, { responsivePriority: 1, targets: 1 } ], diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt index 16dce0edbef..c1c07725624 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt @@ -1209,7 +1209,7 @@ "sorting" : [[ thIndex, 'asc' ]], "dom": '<"top"<"table_entries"><"table_controls"fB>>t', "columnDefs": [ - { "targets": [ "nosort" ],"sortable": false,"searchable": false }, + { "targets": [ "nosort" ],"orderable": false,"searchable": false }, { "type": "anti-the", "targets" : [ "anti-the" ] }, { "visible": false, "targets" : [ "hidden" ] }, { "className": 'dtr-control', "orderable": false, "targets": -1 } -- 2.34.1