diff --git a/qml/ui/widgets/GroundPowerWidget.qml b/qml/ui/widgets/GroundPowerWidget.qml index 445699a8a..7002a9265 100644 --- a/qml/ui/widgets/GroundPowerWidget.qml +++ b/qml/ui/widgets/GroundPowerWidget.qml @@ -207,7 +207,7 @@ BaseWidget { visible: true text: { if (settings.ground_battery_show_single_cell) { - return (_ohdSystemGround.ina219_voltage_millivolt / settings.ground_battery_cells / 1000) + "mVpC"; + return (_ohdSystemGround.ina219_voltage_millivolt / settings.ground_battery_cells / 1000).toFixed(2) + "mVpC"; } else { return (_ohdSystemGround.ina219_voltage_millivolt / 1000).toFixed(2) + "V"; }