diff --git a/interface/src/app/main/deviceValue.ts b/interface/src/app/main/deviceValue.ts index e03bf712c..57b0dfaa3 100644 --- a/interface/src/app/main/deviceValue.ts +++ b/interface/src/app/main/deviceValue.ts @@ -36,7 +36,9 @@ export function formatValue( } return ( (value as string) + - (value === '' || uom === undefined || uom === 0 ? '' : ' ' + DeviceValueUOM_s[uom]) + (value === '' || uom === undefined || uom === 0 + ? '' + : ' ' + DeviceValueUOM_s[uom]) ); }