Skip to content

Commit

Permalink
fix: Round non-currency numbers in Summary Table
Browse files Browse the repository at this point in the history
* Update number formatter to take max decimals
* Set max decimals to 0 on Summary Page
  • Loading branch information
dhaselhan committed Dec 18, 2024
1 parent cb5f7aa commit b9b90fe
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,8 @@ const SummaryTable = ({
{row.format && colIndex !== 0
? rowFormatters[row.format](
row[column.id],
useParenthesis
useParenthesis,
0
)
: row[column.id]}
</span>
Expand Down

0 comments on commit b9b90fe

Please sign in to comment.