fixed decimals t 2 in charts
This commit is contained in:
@@ -197,7 +197,9 @@ export function ReputationMetrics({ days, domain }: ReputationMetricsProps) {
|
|||||||
<p className="text-xs text-muted-foreground w-[70px]">
|
<p className="text-xs text-muted-foreground w-[70px]">
|
||||||
Current
|
Current
|
||||||
</p>
|
</p>
|
||||||
<p className="text-xs font-mono">{data.value}%</p>
|
<p className="text-xs font-mono">
|
||||||
|
{data.value.toFixed(2)}%
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex gap-2 items-center">
|
<div className="flex gap-2 items-center">
|
||||||
<div
|
<div
|
||||||
@@ -332,7 +334,9 @@ export function ReputationMetrics({ days, domain }: ReputationMetricsProps) {
|
|||||||
<p className="text-xs text-muted-foreground w-[70px]">
|
<p className="text-xs text-muted-foreground w-[70px]">
|
||||||
Current
|
Current
|
||||||
</p>
|
</p>
|
||||||
<p className="text-xs font-mono">{data.value}%</p>
|
<p className="text-xs font-mono">
|
||||||
|
{data.value.toFixed(2)}%
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex gap-2 items-center">
|
<div className="flex gap-2 items-center">
|
||||||
<div
|
<div
|
||||||
|
Reference in New Issue
Block a user