diff --git a/source/engine/parse.js b/source/engine/parse.js index e71054080..86847c89a 100644 --- a/source/engine/parse.js +++ b/source/engine/parse.js @@ -162,7 +162,13 @@ export let parseObject = (rules, rule, parsedRules) => rawNode => { // eslint-disable-next-line jsx: () => ( - {formatValue({ unit: v.unit, value: v.nodeValue })} + {formatValue({ + unit: v.unit, + value: v.nodeValue, + // We want to display constants with full precision, + // espacilly for percentages like APEC 0,036 % + maximumFractionDigits: 5 + })} ) })