From 541b2690723b029693081816cb6b770754d88f97 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 10 Mar 2025 16:05:55 +0100 Subject: [PATCH] Bug 39081: Fix order by due dates Signed-off-by: Magnus Enger --- .../prog/en/modules/tools/batch_extend_due_dates.tt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt index 499bbd92d5..3be0c7c6e9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt @@ -268,10 +268,7 @@ $("#selectall").click(); $("#checkouts").kohaTable({ - columnDefs: [ - { targets: [0, 3], orderable: false, searchable: false }, - { targets: [1], type: "num-html" }, - ], + columnDefs: [{ targets: [0, 3], orderable: false, searchable: false }], dom: "t", order: [], paginate: false, -- 2.34.1