Skip to content

Commit

Permalink
Use a 'V' symbol for voltage unit
Browse files Browse the repository at this point in the history
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 <aladyshev22@gmail.com>
  • Loading branch information
Kostr authored and rfrandse committed Jun 30, 2022
1 parent bd75fed commit 873e17a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/modules/HardwareStatus/SensorsStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const SensorsStore = {
upperCaution: sensor.UpperThresholdNonCritical,
lowerCritical: sensor.LowerThresholdCritical,
upperCritical: sensor.UpperThresholdCritical,
units: 'Volts',
units: 'V',
};
});
commit('setSensors', sensorData);
Expand Down

0 comments on commit 873e17a

Please sign in to comment.