Skip to content

Commit 873e17a

Browse files
Kostrrfrandse
authored andcommitted
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 <[email protected]>
1 parent bd75fed commit 873e17a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/store/modules/HardwareStatus/SensorsStore.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ const SensorsStore = {
110110
upperCaution: sensor.UpperThresholdNonCritical,
111111
lowerCritical: sensor.LowerThresholdCritical,
112112
upperCritical: sensor.UpperThresholdCritical,
113-
units: 'Volts',
113+
units: 'V',
114114
};
115115
});
116116
commit('setSensors', sensorData);

0 commit comments

Comments
 (0)