From 506d939b644dc70a84330a06ec76efefb9bd5093 Mon Sep 17 00:00:00 2001 From: Arthur Suzuki Date: Tue, 14 Jan 2025 09:37:40 +0100 Subject: [PATCH] Bug 38776: (QA follow-up) hide the other_reason text field on page load --- koha-tmpl/intranet-tmpl/prog/js/patron-restrictions.js | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/js/patron-restrictions.js b/koha-tmpl/intranet-tmpl/prog/js/patron-restrictions.js index 9d2f5085831..92ebad54bb0 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/patron-restrictions.js +++ b/koha-tmpl/intranet-tmpl/prog/js/patron-restrictions.js @@ -1,4 +1,5 @@ $(document).ready(function(){ + $("#other_reason").hide(); $("#other_reason").on('change', function(){ $("#rcomment").val($(this).val()); }); -- 2.47.1