Fix export
This commit is contained in:
parent
7c3c717d33
commit
44c2927963
@ -523,7 +523,11 @@ function _getLabelFromMeasuredValueSequence(
|
||||
const { NumericValue, MeasurementUnitsCodeSequence } = MeasuredValueSequence;
|
||||
const { CodeValue } = MeasurementUnitsCodeSequence;
|
||||
|
||||
const formatedNumericValue = NumericValue ? NumericValue.toFixed(2) : '';
|
||||
debugger;
|
||||
|
||||
const formatedNumericValue = NumericValue
|
||||
? Number(NumericValue).toFixed(2)
|
||||
: '';
|
||||
|
||||
return {
|
||||
label: CodeMeaning,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user