From a49ca88ce24234fe0db9e125125e083e35be15d4 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 19 Jul 2024 17:36:37 -0600 Subject: [PATCH] Add dashboard_width and dashboard_height --- core/dashboard/app_config.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/core/dashboard/app_config.php b/core/dashboard/app_config.php index 70f98a2644..163c5c4bb0 100644 --- a/core/dashboard/app_config.php +++ b/core/dashboard/app_config.php @@ -87,6 +87,16 @@ $apps[$x]['db'][$y]['fields'][$z]['search_by'] = ''; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the dashboard target.'; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'dashboard_width'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'numeric'; + $apps[$x]['db'][$y]['fields'][$z]['search_by'] = ''; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the dashboard width.'; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'dashboard_height'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'numeric'; + $apps[$x]['db'][$y]['fields'][$z]['search_by'] = ''; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the dashboard height.'; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'dashboard_content'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';