diff --git a/src/components/Settings/SettingsJobsCache/index.tsx b/src/components/Settings/SettingsJobsCache/index.tsx index 72493b2b..be5e3658 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)}