From e349dc0c144c4c90f91ce5c0e8a1bc0b603a6027 Mon Sep 17 00:00:00 2001 From: bittensorrider <280573057+bittensorrider@users.noreply.github.com> Date: Tue, 19 May 2026 10:34:03 +0800 Subject: [PATCH] fix issue #1233 --- src/components/.DS_Store | Bin 0 -> 6148 bytes src/components/miners/CredibilityChart.tsx | 2 +- src/components/miners/MinerActivity.tsx | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 src/components/.DS_Store diff --git a/src/components/.DS_Store b/src/components/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..1afa1f829eb49accd5d0e16742b8f76639a23f01 GIT binary patch literal 6148 zcmeHKJ8r`;3?&;QFwn(gMqQyd5CZoExj=>#L4ni(T(q;NoU2Fc<7aW)Zpjin0@RZz zJ_&k*X^Mz$zYZ@Vortt>L%GA>JE0I)&W4Rh}$ zfW-p9nm7d_0@I)ZgR0qLXwVTanO761z@Up}^PzdOW{0AFJI*hjE?NUQQUNM3S6~&( z&g%aw{Ga}RPU4CRP=SY1K%0KoZ}Ft8t&7K5tu639+;V>4W|%t#gO_8Vmt!of9B(`+ a@`}x|UlXT5rz7rkAb$o-7aA3~w*tQ!I2F18 literal 0 HcmV?d00001 diff --git a/src/components/miners/CredibilityChart.tsx b/src/components/miners/CredibilityChart.tsx index bdf2b9f3..2d0fbfbe 100644 --- a/src/components/miners/CredibilityChart.tsx +++ b/src/components/miners/CredibilityChart.tsx @@ -31,7 +31,7 @@ const CredibilityChart: React.FC = ({ () => ({ ...echartsTransparentBackground(), title: { - text: `${(credibility * 100).toFixed(0)}%`, + text: `${(credibility * 100).toFixed(1)}%`, subtext: 'Credibility', left: 'center', top: '38%', diff --git a/src/components/miners/MinerActivity.tsx b/src/components/miners/MinerActivity.tsx index f30224b0..8c7b9d63 100644 --- a/src/components/miners/MinerActivity.tsx +++ b/src/components/miners/MinerActivity.tsx @@ -105,7 +105,7 @@ const IssueCredibilityChart: React.FC<{ () => ({ ...echartsTransparentBackground(), title: { - text: `${(credibility * 100).toFixed(0)}%`, + text: `${(credibility * 100).toFixed(1)}%`, subtext: 'Credibility', left: 'center', top: '38%',