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}> <Container service={service}>
<Block <Block
label="develancacheui.cachehitbytes" label="develancacheui.cachehitbytes"
value={t("common.number", { value: downloadStatsData.totalCacheHitBytes })} value={t("common.bytes", { value: downloadStatsData.totalCacheHitBytes })}
/> />
<Block <Block
label="develancacheui.cachemissbytes" label="develancacheui.cachemissbytes"
value={t("common.number", { value: downloadStatsData.totalCacheMissBytes })} value={t("common.bytes", { value: downloadStatsData.totalCacheMissBytes })}
/> />
</Container> </Container>
); );