diff --git a/app/Http/Controllers/Logistics/FuelController.php b/app/Http/Controllers/Logistics/FuelController.php index d559716fc..37a3fc42b 100644 --- a/app/Http/Controllers/Logistics/FuelController.php +++ b/app/Http/Controllers/Logistics/FuelController.php @@ -55,6 +55,10 @@ class FuelController extends Controller array_push($jumpGates, $temp); + if($liquidOzone > 1000000) { + $liquidOzone = 1000000; + } + $gauge->addRow([$gate->structure_name, $liquidOzone]); } diff --git a/resources/views/logistics/display/fuel.blade.php b/resources/views/logistics/display/fuel.blade.php index c972320d7..efd6db790 100644 --- a/resources/views/logistics/display/fuel.blade.php +++ b/resources/views/logistics/display/fuel.blade.php @@ -1,5 +1,13 @@ @extends('layouts.b4') @section('content') +
+
+
+
+ {!! $lava->render('GaugeChart', 'Liquid Ozone', 'fuel-div') !!} +
+
+
@@ -29,8 +37,4 @@
-
-
- {!! $lava->render('GaugeChart', 'Liquid Ozone', 'fuel-div') !!} -
@endsection \ No newline at end of file