From 3a9ed4867c9e06d2b6117b6b6bb4f2448f032aef Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Wed, 14 Feb 2024 16:55:33 +0000 Subject: [PATCH] Bug 36096: Add ability to set default sort and length to waitingreserves tables To test: 1. APPLY patch and restart services. 2. Have waiting holds, waiting holds past the expiration date, and waiting holds with cancellation requests. 3. Go to Administration -> Table settings and find each of the tables. ( holdscr | holdso | holdst ) 4. Each table should now include a 'Default display length:' and 'Default sort order:' 5. Play with those Table settings, ensuring they behave correctly. --- admin/columns_settings.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/admin/columns_settings.yml b/admin/columns_settings.yml index dd6396671f..efc1dd6a0c 100644 --- a/admin/columns_settings.yml +++ b/admin/columns_settings.yml @@ -1742,6 +1742,8 @@ modules: holds_awaiting_pickup: holdst: + default_display_length: 20 + default_sort_order: 1 columns: - columnname: checkbox @@ -1773,6 +1775,8 @@ modules: columnname: action holdso: + default_display_length: 20 + default_sort_order: 1 columns: - columnname: checkbox @@ -1804,6 +1808,8 @@ modules: columnname: action holdscr: + default_display_length: 20 + default_sort_order: 1 columns: - columnname: checkbox -- 2.30.2