[Legacy]Update max height or listview

This commit is contained in:
Jack Anderson 2023-02-09 09:24:03 +00:00 committed by Clemente Raposo
parent d222ecceab
commit 91464eb898

View file

@ -155,7 +155,7 @@ function make_sugar_config(&$sugar_config)
'subpanel_pagination_type' => 'pagination',
'subpanel_max_height' => empty($subpanel_max_height) ? 620 : $subpanel_max_height,
'listview_pagination_type' => 'pagination',
'listview_max_height' => empty($listview_max_height) ? 1270 : $listview_max_height,
'listview_max_height' => empty($listview_max_height) ? 0 : $listview_max_height,
'default_theme' => empty($default_theme) ? 'SuiteP' : $default_theme,
'default_time_format' => empty($defaultTimeFormat) ? 'h:ia' : $defaultTimeFormat,
'default_user_is_admin' => empty($default_user_is_admin) ? false : $default_user_is_admin,
@ -448,7 +448,7 @@ function get_sugar_config_defaults(): array
'record_modal_pagination_type' => 'pagination',
'list_max_entries_per_subpanel' => 10,
'list_max_entries_per_modal' => 10,
'listview_max_height' => 1270,
'listview_max_height' => 0,
'subpanel_max_height' => 620,
'lock_default_user_name' => false,
'log_memory_usage' => false,