add units to non compact values

This commit is contained in:
Arthur Lu 2023-04-19 03:12:50 +00:00
parent 472952d298
commit 8f37806280

View File

@ -46,6 +46,6 @@ function parseNumber(value, unitData) {
return `${value} ${unitPrefix}${unit}` return `${value} ${unitPrefix}${unit}`
} }
else { else {
return value; return `${value} ${unit}`;
} }
} }