From adeac832135c289968f74a779fc1bcbcb51cc3ec Mon Sep 17 00:00:00 2001 From: David Nind Date: Mon, 30 Jun 2025 18:29:19 +0000 Subject: [PATCH] Bug 40281: Hide the type column on the patron circulation history page This fixes the patron circulation history page so that the type column is hidden. The type column on a patron's circulation history page was hidden by Bug 38954 - Hide checkout type using colvis. However, the commit for Bug 37273 - Add ID column to Agreements table in the ERM, inadvertently reversed hiding the column. Test plan: 1. Check out an item to a patron (for example, 39999000011418 to Mary Burton). 2. Look at the patron's circulation history page (Patrons > Mary Burton > Circulation history), and note there is a 'Type' column shown with a value of 'standard_checkout'. 3. Note that you can't hide the column, from either selecting the 'Columns' or 'Configure' options for the table. 4. Apply the patch, restart everything (restart_all), and clear your browser cache. 5. Repeat step 2. Note that there is now no 'Type' column shown and it is not configurable, from either selecting the 'Columns' or 'Configure' options for the table. Signed-off-by: David Nind --- admin/columns_settings.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/admin/columns_settings.yml b/admin/columns_settings.yml index f482000815..32bc69887a 100644 --- a/admin/columns_settings.yml +++ b/admin/columns_settings.yml @@ -1453,6 +1453,7 @@ modules: - columnname: type cannot_be_toggled: 1 cannot_be_modified: 1 + is_hidden: 1 - columnname: date - @@ -2580,4 +2581,4 @@ modules: - columnname: actions cannot_be_toggled: 1 - cannot_be_modified: 1 \ No newline at end of file + cannot_be_modified: 1 -- 2.39.5