From 7d2e3cd78224f10ede0e365fbcaa11cef51e7af2 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Thu, 16 Jun 2022 16:00:54 -0400 Subject: [PATCH] Add blank line between two if conditional blocks in the dashboard model --- app/Models/DashboardModel.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Models/DashboardModel.php b/app/Models/DashboardModel.php index 75f3846..03caecc 100644 --- a/app/Models/DashboardModel.php +++ b/app/Models/DashboardModel.php @@ -225,6 +225,7 @@ class DashboardModel extends Model if (array_key_exists('max_width', $column)) { $max_width = $column['max_width']; } + // Update the maximum height if it's been configured if (array_key_exists('max_height', $column)) { $max_height = $column['max_height'];