From 27d8f155b27f486b41f6081a5acf3b1474b0d45c Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 29 Jun 2020 11:04:59 +0000 Subject: [PATCH] Bug 25890: Update sorting column for checkouts table Test plan: - Check some items out, all from different libraries - Modify the checkout and due dates, like: 2018-10-22 2018-01-23 2018-05-27 - Sort by checkout date, verify it is actually sorting on homebranch - Apply patch - Reload page - Note you can now sort items correctly Signed-off-by: Owen Leonard --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js index 1b9b4a213d..6e639bc533 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -377,7 +377,7 @@ $(document).ready(function() { "bVisible": false, }, { - "iDataSort": 9, // Sort on hidden unformatted issuedate column + "iDataSort": 10, // Sort on hidden unformatted issuedate column "mDataProp": "issuedate_formatted", }, { -- 2.11.0