Skip to content

Commit

Permalink
fix: écart valeur absolue was hidden wrongly (#1890)
Browse files Browse the repository at this point in the history
  • Loading branch information
pom421 authored Nov 29, 2023
1 parent 638db6e commit 664a512
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,9 @@ export const Indic2and3Form = () => {
text={
<>
Écart en valeur absolue :{" "}
<strong>{computed?.result ? percentFormat.format(computed.result / 100) : ""}</strong>
<strong>
{computed?.result !== undefined ? percentFormat.format(computed.result / 100) : ""}
</strong>
</>
}
/>
Expand Down

0 comments on commit 664a512

Please sign in to comment.