mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-04 00:18:01 +01:00
Remove toLocaleString from MetricsChartTooltip
This commit is contained in:
parent
e2cfd272df
commit
6b8874a26c
@ -112,17 +112,17 @@ export const MetricsSummaryTooltip: VFC<{ tooltip: TooltipState | null }> = ({
|
|||||||
/>
|
/>
|
||||||
<InfoLine
|
<InfoLine
|
||||||
iconChar={'▣ '}
|
iconChar={'▣ '}
|
||||||
title={`Total requests: ${(point.value.totalRequests ?? 0).toLocaleString()}`}
|
title={`Total requests: ${point.value.totalRequests ?? 0}`}
|
||||||
color={'info'}
|
color={'info'}
|
||||||
/>
|
/>
|
||||||
<InfoLine
|
<InfoLine
|
||||||
iconChar={'▲ '}
|
iconChar={'▲ '}
|
||||||
title={`Exposed: ${(point.value.totalYes ?? 0).toLocaleString()}`}
|
title={`Exposed: ${point.value.totalYes ?? 0}`}
|
||||||
color={'success'}
|
color={'success'}
|
||||||
/>
|
/>
|
||||||
<InfoLine
|
<InfoLine
|
||||||
iconChar={'▼ '}
|
iconChar={'▼ '}
|
||||||
title={`Not exposed: ${(point.value.totalNo ?? 0).toLocaleString()}`}
|
title={`Not exposed: ${point.value.totalNo ?? 0}`}
|
||||||
color={'error'}
|
color={'error'}
|
||||||
/>
|
/>
|
||||||
<ConditionallyRender
|
<ConditionallyRender
|
||||||
|
Loading…
Reference in New Issue
Block a user