From 7fda967f6efc5147d9f4ead235f28c93293713e2 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 21 Oct 2021 10:19:55 +0200 Subject: [PATCH] Bug 29279: Use class for targets Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 636644bcc3c6dd5bb21f068d3484da44d261768d) Signed-off-by: Fridolin Somers --- .../intranet-tmpl/prog/en/modules/circ/reserveratios.tt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/reserveratios.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/reserveratios.tt index 4ab4d6b3ac..545e581f41 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/reserveratios.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/reserveratios.tt @@ -40,12 +40,12 @@ Holds Items Hold ratio - Title + Title Home libraries Holding libraries Location Itype - Call numbers + Call numbers Items needed @@ -182,8 +182,8 @@ KohaTable("holdst", { "aaSorting": [ [2,'desc'], [3,'asc'] ], "aoColumnDefs": [ - { "aTargets": [ 8 ], "sType": "natural" }, - { "aTargets": [ 3 ], "sType": "anti-the" }, + { "sType": "anti-the", "aTargets" : [ "anti-the" ] }, + { "sType": "natural", "aTargets" : [ "natural" ] }, ], "sPaginationType": "full", "autoWidth": false -- 2.20.1