mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 12:05:41 +01:00
Update FunnelChart.tsx
This commit is contained in:
parent
c5ccd53228
commit
419767c5e7
1 changed files with 2 additions and 2 deletions
|
|
@ -34,7 +34,7 @@ export function FunnelChart({ className }: FunnelChartProps) {
|
|||
<div className={styles.metric}>
|
||||
<div>
|
||||
<span className={styles.visitors}>
|
||||
{intl.formatNumber(+visitors, formatLongNumberOptions(+visitors))}
|
||||
{intl.formatNumber(visitors, formatLongNumberOptions(visitors))}
|
||||
</span>
|
||||
{formatMessage(labels.visitors)}
|
||||
</div>
|
||||
|
|
@ -47,7 +47,7 @@ export function FunnelChart({ className }: FunnelChartProps) {
|
|||
</div>
|
||||
{dropoff > 0 && (
|
||||
<div className={styles.info}>
|
||||
<b>{intl.formatNumber(+dropped, formatLongNumberOptions(+dropped))}</b>{' '}
|
||||
<b>{intl.formatNumber(dropped, formatLongNumberOptions(dropped))}</b>{' '}
|
||||
{formatMessage(labels.visitorsDroppedOff)} (
|
||||
{intl.formatNumber(+dropoff, { style: 'percent', maximumFractionDigits: 1 })})
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue