Merge pull request #893 from benphelps/fix-892
Fix nzbget download rate units
This commit is contained in:
commit
e5d65f410c
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ export default function Component({ service }) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Container service={service}>
|
<Container service={service}>
|
||||||
<Block label="nzbget.rate" value={t("common.bitrate", { value: statusData.DownloadRate })} />
|
<Block label="nzbget.rate" value={t("common.byterate", { value: statusData.DownloadRate })} />
|
||||||
<Block
|
<Block
|
||||||
label="nzbget.remaining"
|
label="nzbget.remaining"
|
||||||
value={t("common.bytes", { value: statusData.RemainingSizeMB * 1024 * 1024 })}
|
value={t("common.bytes", { value: statusData.RemainingSizeMB * 1024 * 1024 })}
|
||||||
|
|
Loading…
Add table
Reference in a new issue