Skip to content

Commit

Permalink
remove rounding decimals
Browse files Browse the repository at this point in the history
  • Loading branch information
terryttsai committed Sep 21, 2022
1 parent 788b41d commit eccdddc
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions publisher/src/components/ReviewMetrics/ReviewMetrics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,10 +255,7 @@ const ReviewMetrics: React.FC = observer(() => {
}
return (
<DatapointsTableDetailsCell key={key}>
{parseFloat(
(typeof value === "string" ? parseFloat(value) : value).toFixed(2)
)}
{/* {value} */}
{value}
{oldValue !== null ? <OrangeText>*</OrangeText> : ""}
</DatapointsTableDetailsCell>
);
Expand Down

0 comments on commit eccdddc

Please sign in to comment.