mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-01 21:13:39 +01:00
correct transmission rate units
This commit is contained in:
parent
96507e4eba
commit
4855aa762f
@ -36,9 +36,9 @@ export default function Component({ service }) {
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="transmission.leech" value={t("common.number", { value: leech })} />
|
||||
<Block label="transmission.download" value={t("common.bitrate", { value: rateDl * 8 })} />
|
||||
<Block label="transmission.download" value={t("common.byterate", { value: rateDl })} />
|
||||
<Block label="transmission.seed" value={t("common.number", { value: completed })} />
|
||||
<Block label="transmission.upload" value={t("common.bitrate", { value: rateUl * 8 })} />
|
||||
<Block label="transmission.upload" value={t("common.byterate", { value: rateUl })} />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user