mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Remove reference to unused variable (#14280)
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user