Fixed issue

This commit is contained in:
Devedse
2024-05-30 15:21:14 +02:00
parent e4680f9b9c
commit 12ba7a9bc3

View File

@@ -28,11 +28,11 @@ export default function Component({ service }) {
<Container service={service}>
<Block
label="develancacheui.cachehitbytes"
value={t("common.number", { value: downloadStatsData.totalCacheHitBytes })}
value={t("common.bytes", { value: downloadStatsData.totalCacheHitBytes })}
/>
<Block
label="develancacheui.cachemissbytes"
value={t("common.number", { value: downloadStatsData.totalCacheMissBytes })}
value={t("common.bytes", { value: downloadStatsData.totalCacheMissBytes })}
/>
</Container>
);