Update EventProperties.tsx

This commit is contained in:
Minseo Lee 2024-09-09 15:21:46 +09:00
parent c1eb76ded7
commit 264a4d1958

View file

@ -54,8 +54,8 @@ export function EventProperties({ websiteId }: { websiteId: string }) {
</GridColumn>
<GridColumn name="total" label={formatMessage(labels.count)} alignment="end">
{row => (
<span title={intl.formatNumber(row.count)}>
{intl.formatNumber(row.count, formatLongNumberOptions(row.count))}
<span title={intl.formatNumber(row.total)}>
{intl.formatNumber(row.total, formatLongNumberOptions(row.total))}
</span>
)}
</GridColumn>