From f095f43b272181287c1da78a3860c5e0f0bc485f Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Mon, 1 Jul 2024 10:30:08 +0000 Subject: [PATCH] Bug 37178: Disable sorting on comments column Signed-off-by: Lucas Gass Signed-off-by: Paul Derscheid --- koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js b/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js index 7330e709ac..7696424818 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js +++ b/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js @@ -402,7 +402,7 @@ $(document).ready(function() { }, { "data": "comments_count", - "orderable": true, + "orderable": false, "searchable": false, "render": function(data, type, row, meta) { return escape_str(data); -- 2.39.5