From 39d054ba3f89f120031ff70caa514a7627f5d3c6 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. Signed-off-by: mikael --- 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 955a2f4a36..0489f4da6d 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.17.1