From fae5394391363435256593fe4a0c10b0b268248c Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 9 Feb 2026 16:03:50 +0000 Subject: [PATCH] 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ä Signed-off-by: Nick Clemens Signed-off-by: Pedro Amorim --- 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 e89bdc8d4d7..5489f2fbc5a 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.39.5