add units to non compact values

This commit is contained in:
2023-04-19 03:12:50 +00:00
parent 472952d298
commit 8f37806280
+1 -1
View File
@@ -46,6 +46,6 @@ function parseNumber(value, unitData) {
return `${value} ${unitPrefix}${unit}`
}
else {
return value;
return `${value} ${unit}`;
}
}