Skip to content

Commit

Permalink
Fix for numbers. (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
BennuFire authored Feb 6, 2023
1 parent 4b89e9f commit 7a1cfe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/report/ReportRecordProcessing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ function RenderInteger(value) {
if (!value || !value.toInt) {
return RenderNumber(value);
}
const integer = value.toInt().toLocaleString();
const integer = value.toNumber().toLocaleString();
return integer;
}

Expand Down

0 comments on commit 7a1cfe9

Please sign in to comment.