From 2e42326e349a0debbaf66380f031a36a497540f8 Mon Sep 17 00:00:00 2001 From: Tony Murray Date: Sat, 3 Sep 2022 23:45:12 -0500 Subject: [PATCH] Remove reference to unused variable (#14280) --- app/Http/Controllers/Device/Tabs/OverviewController.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/Http/Controllers/Device/Tabs/OverviewController.php b/app/Http/Controllers/Device/Tabs/OverviewController.php index c6d6e98142..8eecf3e9b8 100644 --- a/app/Http/Controllers/Device/Tabs/OverviewController.php +++ b/app/Http/Controllers/Device/Tabs/OverviewController.php @@ -63,14 +63,12 @@ class OverviewController implements DeviceTab if ($screen_width > 970) { $graph['width'] = round(($screen_width - 390) / 2, 0); $graph['height'] = round($graph['width'] / 3); - $graph['lazy_w'] = $graph['width'] + 80; return $graph; } $graph['width'] = $screen_width - 190; $graph['height'] = round($graph['width'] / 3); - $graph['lazy_w'] = $graph['width'] + 80; } return $graph;