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 (
|
||||
<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.queue" value={t("common.number", { value: pyloadData.queue })} />
|
||||
<Block label="pyload.total" value={t("common.number", { value: pyloadData.total })} />
|
||||
|
|
Loading…
Add table
Reference in a new issue