mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-08 14:38:47 +00:00
Merge pull request #1078 from benphelps/fix-1077
Fix: use correct rate units for pyload
This commit is contained in:
commit
8c97bf6213
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ export default function Component({ service }) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Container service={service}>
|
<Container service={service}>
|
||||||
<Block label="pyload.speed" value={t("common.bitrate", { value: pyloadData.speed })} />
|
<Block label="pyload.speed" value={t("common.byterate", { value: pyloadData.speed })} />
|
||||||
<Block label="pyload.active" value={t("common.number", { value: pyloadData.active })} />
|
<Block label="pyload.active" value={t("common.number", { value: pyloadData.active })} />
|
||||||
<Block label="pyload.queue" value={t("common.number", { value: pyloadData.queue })} />
|
<Block label="pyload.queue" value={t("common.number", { value: pyloadData.queue })} />
|
||||||
<Block label="pyload.total" value={t("common.number", { value: pyloadData.total })} />
|
<Block label="pyload.total" value={t("common.number", { value: pyloadData.total })} />
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue