From 1f2bd2adf7ea0334a4d771c88557b646fb7f5416 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 13 Apr 2023 15:27:10 +0200 Subject: [PATCH] Bug 33568: Temporary set searchable to false where no data MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Owen Leonard Signed-off-by: Laurence Rault Signed-off-by: Emily Lamancusa Signed-off-by: Tomás Cohen Arazi --- .../prog/en/modules/catalogue/detail.tt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index 4724493e0b9..b6417bca139 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -2592,7 +2592,7 @@ { data: "", className: "item_group", - searchable: true, + searchable: false, // FIXME orderable: true, render: function (data, type, row, meta) { return "item.item_group.description";// FIXME item.item_group.description @@ -2613,7 +2613,7 @@ { data: "", className: "enumchron", - searchable: true, + searchable: false, // FIXME orderable: true, render: function (data, type, row, meta) { return "volinfo"; // FIXME volinfo/enumchron/serial_issue_number @@ -2623,7 +2623,7 @@ { data: "", className: "status", - searchable: true, + searchable: false, // FIXME orderable: true, render: function (data, type, row, meta) { return "status"; // FIXME Display status @@ -2752,7 +2752,7 @@ [% IF ( hostrecords ) %] { data: "", - searchable: true, + searchable: false, // FIXME orderable: true, render: function (data, type, row, meta) { return ""; // FIXME Display host title with link @@ -2762,7 +2762,7 @@ [% IF ( analyze ) %] { data: "", - searchable: true, + searchable: false, // FIXME orderable: true, render: function (data, type, row, meta) { return ""; // FIXME Display analytic count + link @@ -2772,7 +2772,7 @@ [% IF ( ShowCourseReserves ) %] { data: "", - searchable: true, + searchable: false, // FIXME orderable: true, render: function (data, type, row, meta) { return ""; // FIXME Display course reserves @@ -2782,7 +2782,7 @@ [% IF ( SpineLabelShowPrintOnBibDetails ) %] { data: "", - searchable: true, + searchable: false, // FIXME orderable: true, render: function (data, type, row, meta) { return ""; // FIXME Print label -- 2.34.1