Fix comparison operator in _convertPositionNum2Str method

This commit is contained in:
2025-09-25 13:54:12 +02:00
parent a41f053d5d
commit c261335df5

View File

@@ -433,7 +433,7 @@ class MeasurementContainer {
}
_convertPositionNum2Str(positionValue) {
if (positionValue == 0) {
if (positionValue === 0) {
return "atEquipment";
}
if (positionValue < 0) {