From 508d23e36297d7f55458e5bcad6e71a08b1b5bfa Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 30 Oct 2025 20:26:08 +0000 Subject: [PATCH] Bug 41149: Replace replaceWith() with empty() and append() To test: 1. Set AllowRenewalOnHoldOverride to 'Dont allow' 2. Set OverduesBlockRenewing to "block renewing" 3. Checkout an item and mark it as overdue. 4. Place a hold on that item to someone else 5. Now go look at the issues table for that patron/item 6. Check "Override renewal restrictions:" 7. Now a checkbox should appear in the "Renew" column, check it. 8. Click "Renew selected items" 9. After the "Renew failed: on hold" appears the spinning icon should disappear. Signed-off-by: Owen Leonard --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js index 185a5488db5..f03640b7f4a 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -1014,8 +1014,7 @@ $(document).ready(function () { } refresh_table = false; } - - $(id).replaceWith(content); + $(id).parent().empty().append(content); }, error => { console.warn("Something wrong happened: %s".format(error)); -- 2.39.5