Skip to content

Commit a31dc47

Browse files
authored
Merge pull request #4168 from dlabrecq/COST-5829
UI should display decimals for Cost Explorer y-axis label
2 parents 7c4674b + 1c880db commit a31dc47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/format.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export const formatCurrencyAbbreviation: Formatter = (value, units = 'USD') => {
7272
symbol,
7373
value: formatCurrency(fValue / val, units, {
7474
minimumFractionDigits: 0,
75-
maximumFractionDigits: 0,
75+
maximumFractionDigits: 2,
7676
}),
7777
}) as string;
7878
}

0 commit comments

Comments
 (0)