From 71f5f097fc71699aa3df229df41ead76fbda859e Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 9 Feb 2026 16:03:50 +0000 Subject: [PATCH 1/3] Bug 23269: (follow-up) Show lowest priority toggle unless hold is 'found' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Johanna Räisä --- koha-tmpl/intranet-tmpl/prog/js/holds.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/holds.js b/koha-tmpl/intranet-tmpl/prog/js/holds.js index e89bdc8d4d..5489f2fbc5 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/holds.js +++ b/koha-tmpl/intranet-tmpl/prog/js/holds.js @@ -1719,7 +1719,7 @@ async function load_patron_holds_table(biblio_id, split_data) { orderable: false, searchable: false, render: function (data, type, row, meta) { - if (row.item_id) { + if (row.status) { return null; } else { if (row.lowest_priority) { -- 2.34.1