From 3c83e028ac028023d3c4c0bf797627efd172097d Mon Sep 17 00:00:00 2001 From: mctomac <69583572+mctomac@users.noreply.github.com> Date: Fri, 5 Jul 2024 20:22:09 +0200 Subject: [PATCH] fix(properties-utils): fix decimiter units (#440) Co-authored-by: Tomek Kubiak --- packages/core/src/ifc/Utils/properties-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/ifc/Utils/properties-utils.ts b/packages/core/src/ifc/Utils/properties-utils.ts index ba3bdf648..0306dae57 100644 --- a/packages/core/src/ifc/Utils/properties-utils.ts +++ b/packages/core/src/ifc/Utils/properties-utils.ts @@ -35,7 +35,7 @@ export class IfcPropertiesUtils { } else if (unit.Prefix?.value === "CENTI") { factor = 0.01; } else if (unit.Prefix?.value === "DECI") { - factor = 0.01; + factor = 0.1; } return unitValue * factor; }