diff --git a/src/components/metrics/ListTable.tsx b/src/components/metrics/ListTable.tsx
index 99835b9d0..b06f3a153 100644
--- a/src/components/metrics/ListTable.tsx
+++ b/src/components/metrics/ListTable.tsx
@@ -99,13 +99,17 @@ const AnimatedRow = ({ label, value = 0, percent, change, animate, showPercentag
intl.formatNumber(n))}
+ style={{ fontVariantNumeric: 'tabular-nums' }}
>
{props.y?.to((n: number) => intl.formatNumber(n, formatLongNumberOptions(n)))}
{showPercentage && (
-
`${n}%`) }} />
+ `${n}%`), fontVariantNumeric: 'tabular-nums' }}
+ />
{props.width.to(n => intl.formatNumber(n / 100, { style: 'percent' }))}