From eecc52f0f3310f619aec5382f4d436fefb6e947c Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 24 Jan 2019 16:13:47 +0000 Subject: [PATCH] Bug 21845: Sort of issues in OPAC subscription table This patch adds a default sort option to the table of subscriptions on the OPAC detail page. This sorting option matches the sort of data passed from GetLatestSerials. To test, apply the patch and locate a subscription in the OPAC which has multiple issues. They should be sorted by default on publication date. --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt index 955a2f4..0489f4d 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -1467,6 +1467,7 @@ KohaTable("#subscriptionst", { dom: '<"clearfix">t', + "sorting": [[ 1, "desc" ]], "columnDefs": [ { "type": "title-string", "targets" : [ "title-string" ] } ], -- 2.1.4