From a69102a268875723090485cf29d53617561580b1 Mon Sep 17 00:00:00 2001 From: Konstantin Aladyshev Date: Mon, 2 Aug 2021 14:35:06 +0300 Subject: Use a 'V' symbol for voltage unit Currently webui-vue displays all sensor data with units written as symbols ('A', 'W', 'C', 'RPM') except for voltage which is written as 'Volts'. Use a 'V' symbol for voltage unit for unification. Change-Id: I257b6d6bf1d099f62a861430a6448368b56dace1 Signed-off-by: Konstantin Aladyshev --- src/store/modules/HardwareStatus/SensorsStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/store/modules/HardwareStatus/SensorsStore.js b/src/store/modules/HardwareStatus/SensorsStore.js index 0af2a95b..287796d9 100644 --- a/src/store/modules/HardwareStatus/SensorsStore.js +++ b/src/store/modules/HardwareStatus/SensorsStore.js @@ -110,7 +110,7 @@ const SensorsStore = { upperCaution: sensor.UpperThresholdNonCritical, lowerCritical: sensor.LowerThresholdCritical, upperCritical: sensor.UpperThresholdCritical, - units: 'Volts', + units: 'V', }; }); commit('setSensors', sensorData); -- cgit v1.2.3