Skip to content

Commit

Permalink
skip rescaling of money values
Browse files Browse the repository at this point in the history
  • Loading branch information
awildturtok committed Sep 5, 2024
1 parent 88224e5 commit 1e101b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/js/entity-history/timeline/GroupedContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const Cell = memo(
<SxNumericFormat
{...currencyConfig}
displayType="text"
value={parseInt(cell as string) / 100}
value={parseFloat(cell as string)}
/>
);
}
Expand Down

0 comments on commit 1e101b6

Please sign in to comment.