Fix export

This commit is contained in:
James A. Petts 2020-07-01 15:12:49 +01:00
parent 7c3c717d33
commit 44c2927963

View File

@ -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,