From 6c437c515fc01b9fe4461968875e23542bae7542 Mon Sep 17 00:00:00 2001 From: sct Date: Sun, 31 Jan 2021 13:31:06 +0000 Subject: [PATCH] fix(cache): use formatted numbers for displaying cache counts --- src/components/Settings/SettingsJobsCache/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Settings/SettingsJobsCache/index.tsx b/src/components/Settings/SettingsJobsCache/index.tsx index 72493b2b5..be5e36583 100644 --- a/src/components/Settings/SettingsJobsCache/index.tsx +++ b/src/components/Settings/SettingsJobsCache/index.tsx @@ -177,9 +177,9 @@ const SettingsJobs: React.FC = () => { {cacheData?.map((cache) => ( {cache.name} - {cache.stats.hits} - {cache.stats.misses} - {cache.stats.keys} + {intl.formatNumber(cache.stats.hits)} + {intl.formatNumber(cache.stats.misses)} + {intl.formatNumber(cache.stats.keys)} {formatBytes(cache.stats.ksize)} {formatBytes(cache.stats.vsize)}