Remove reference to unused variable (#14280)

This commit is contained in:
Tony Murray
2022-09-03 23:45:12 -05:00
committed by GitHub
parent 152bf6e8de
commit 2e42326e34

View File

@@ -63,14 +63,12 @@ class OverviewController implements DeviceTab
if ($screen_width > 970) { if ($screen_width > 970) {
$graph['width'] = round(($screen_width - 390) / 2, 0); $graph['width'] = round(($screen_width - 390) / 2, 0);
$graph['height'] = round($graph['width'] / 3); $graph['height'] = round($graph['width'] / 3);
$graph['lazy_w'] = $graph['width'] + 80;
return $graph; return $graph;
} }
$graph['width'] = $screen_width - 190; $graph['width'] = $screen_width - 190;
$graph['height'] = round($graph['width'] / 3); $graph['height'] = round($graph['width'] / 3);
$graph['lazy_w'] = $graph['width'] + 80;
} }
return $graph; return $graph;