From 63a2dd7f2caf70dda808fdbe0b993547b338300d 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. Signed-off-by: Owen Leonard --- admin/columns_settings.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/admin/columns_settings.yml b/admin/columns_settings.yml index 1ae17d384b2..b691f09c911 100644 --- a/admin/columns_settings.yml +++ b/admin/columns_settings.yml @@ -1748,6 +1748,8 @@ modules: holds_awaiting_pickup: holdst: + default_display_length: 20 + default_sort_order: 1 columns: - columnname: checkbox @@ -1779,6 +1781,8 @@ modules: columnname: action holdso: + default_display_length: 20 + default_sort_order: 1 columns: - columnname: checkbox @@ -1810,6 +1814,8 @@ modules: columnname: action holdscr: + default_display_length: 20 + default_sort_order: 1 columns: - columnname: checkbox -- 2.30.2